summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-01-16 21:16:35 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-01-16 21:16:35 +0300
commitc994c25720606157ba5de25f1edb3ce72f5ac8b7 (patch)
tree66d1aafe48f8624b887fb374c51bab01e4e75ef3 /cli
parent07bb1c6ca91ad2983ddd1076c550c09cc6a09fdb (diff)
Update copyright year
Diffstat (limited to 'cli')
-rw-r--r--cli/buildfile2
-rw-r--r--cli/cli.cxx4
-rw-r--r--cli/context.cxx2
-rw-r--r--cli/context.hxx2
-rw-r--r--cli/generator.cxx2
-rw-r--r--cli/generator.hxx2
-rw-r--r--cli/header.cxx2
-rw-r--r--cli/header.hxx2
-rw-r--r--cli/html.cxx2
-rw-r--r--cli/html.hxx2
-rw-r--r--cli/inline.cxx2
-rw-r--r--cli/inline.hxx2
-rw-r--r--cli/lexer.cxx2
-rw-r--r--cli/lexer.hxx2
-rw-r--r--cli/lexer.ixx2
-rw-r--r--cli/man.cxx2
-rw-r--r--cli/man.hxx2
-rw-r--r--cli/name-processor.cxx2
-rw-r--r--cli/name-processor.hxx2
-rw-r--r--cli/option-types.cxx2
-rw-r--r--cli/option-types.hxx2
-rw-r--r--cli/options.cli2
-rw-r--r--cli/parser.cxx2
-rw-r--r--cli/parser.hxx2
-rw-r--r--cli/runtime-header.cxx2
-rw-r--r--cli/runtime-header.hxx2
-rw-r--r--cli/runtime-inline.cxx2
-rw-r--r--cli/runtime-inline.hxx2
-rw-r--r--cli/runtime-source.cxx2
-rw-r--r--cli/runtime-source.hxx2
-rw-r--r--cli/semantics.hxx2
-rw-r--r--cli/semantics/class.cxx2
-rw-r--r--cli/semantics/class.hxx2
-rw-r--r--cli/semantics/doc.cxx2
-rw-r--r--cli/semantics/doc.hxx2
-rw-r--r--cli/semantics/elements.cxx2
-rw-r--r--cli/semantics/elements.hxx2
-rw-r--r--cli/semantics/expression.cxx2
-rw-r--r--cli/semantics/expression.hxx2
-rw-r--r--cli/semantics/namespace.cxx2
-rw-r--r--cli/semantics/namespace.hxx2
-rw-r--r--cli/semantics/option.cxx2
-rw-r--r--cli/semantics/option.hxx2
-rw-r--r--cli/semantics/unit.cxx2
-rw-r--r--cli/semantics/unit.hxx2
-rw-r--r--cli/semantics/unit.txx2
-rw-r--r--cli/source.cxx2
-rw-r--r--cli/source.hxx2
-rw-r--r--cli/token.hxx2
-rw-r--r--cli/token.ixx2
-rw-r--r--cli/traversal.hxx2
-rw-r--r--cli/traversal/class.cxx2
-rw-r--r--cli/traversal/class.hxx2
-rw-r--r--cli/traversal/doc.hxx2
-rw-r--r--cli/traversal/elements.cxx2
-rw-r--r--cli/traversal/elements.hxx2
-rw-r--r--cli/traversal/expression.hxx2
-rw-r--r--cli/traversal/namespace.cxx2
-rw-r--r--cli/traversal/namespace.hxx2
-rw-r--r--cli/traversal/option.cxx2
-rw-r--r--cli/traversal/option.hxx2
-rw-r--r--cli/traversal/unit.cxx2
-rw-r--r--cli/traversal/unit.hxx2
-rw-r--r--cli/txt.cxx2
-rw-r--r--cli/txt.hxx2
-rw-r--r--cli/version.hxx.in2
66 files changed, 67 insertions, 67 deletions
diff --git a/cli/buildfile b/cli/buildfile
index df30d10..24e5853 100644
--- a/cli/buildfile
+++ b/cli/buildfile
@@ -1,5 +1,5 @@
# file : cli/buildfile
-# copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+# copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
# license : MIT; see accompanying LICENSE file
import libs = libcutl%lib{cutl}
diff --git a/cli/cli.cxx b/cli/cli.cxx
index 63dbadc..e6e5dec 100644
--- a/cli/cli.cxx
+++ b/cli/cli.cxx
@@ -1,6 +1,6 @@
// file : cli/cli.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <vector>
@@ -40,7 +40,7 @@ main (int argc, char* argv[])
ostream& o (cout);
o << "CLI (command line interface compiler) " << CLI_VERSION_ID << endl
- << "Copyright (c) 2009-2018 Code Synthesis Tools CC" << endl;
+ << "Copyright (c) 2009-2019 Code Synthesis Tools CC" << endl;
o << "This is free software; see the source for copying conditions. "
<< "There is NO\nwarranty; not even for MERCHANTABILITY or FITNESS "
diff --git a/cli/context.cxx b/cli/context.cxx
index da6c556..3715efa 100644
--- a/cli/context.cxx
+++ b/cli/context.cxx
@@ -1,6 +1,6 @@
// file : cli/context.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <stack>
diff --git a/cli/context.hxx b/cli/context.hxx
index c9e5d14..a076c17 100644
--- a/cli/context.hxx
+++ b/cli/context.hxx
@@ -1,6 +1,6 @@
// file : cli/context.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_CONTEXT_HXX
diff --git a/cli/generator.cxx b/cli/generator.cxx
index 117ec35..33f3b46 100644
--- a/cli/generator.cxx
+++ b/cli/generator.cxx
@@ -1,6 +1,6 @@
// file : cli/generator.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cctype> // std::toupper, std::is{alpha,upper,lower}
diff --git a/cli/generator.hxx b/cli/generator.hxx
index 9a8d79e..7cedf83 100644
--- a/cli/generator.hxx
+++ b/cli/generator.hxx
@@ -1,6 +1,6 @@
// file : cli/generator.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_GENERATOR_HXX
diff --git a/cli/header.cxx b/cli/header.cxx
index c3ac23c..dc0ea9e 100644
--- a/cli/header.cxx
+++ b/cli/header.cxx
@@ -1,6 +1,6 @@
// file : cli/header.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cli/header.hxx>
diff --git a/cli/header.hxx b/cli/header.hxx
index 550ff86..ce7bc67 100644
--- a/cli/header.hxx
+++ b/cli/header.hxx
@@ -1,6 +1,6 @@
// file : cli/header.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_HEADER_HXX
diff --git a/cli/html.cxx b/cli/html.cxx
index c308631..bc8c543 100644
--- a/cli/html.cxx
+++ b/cli/html.cxx
@@ -1,6 +1,6 @@
// file : cli/html.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <vector>
diff --git a/cli/html.hxx b/cli/html.hxx
index 29dc6e0..467d3a7 100644
--- a/cli/html.hxx
+++ b/cli/html.hxx
@@ -1,6 +1,6 @@
// file : cli/html.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_HTML_HXX
diff --git a/cli/inline.cxx b/cli/inline.cxx
index 8c822b2..9dc5440 100644
--- a/cli/inline.cxx
+++ b/cli/inline.cxx
@@ -1,6 +1,6 @@
// file : cli/inline.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cli/inline.hxx>
diff --git a/cli/inline.hxx b/cli/inline.hxx
index 64b8d86..e99a9be 100644
--- a/cli/inline.hxx
+++ b/cli/inline.hxx
@@ -1,6 +1,6 @@
// file : cli/inline.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_INLINE_HXX
diff --git a/cli/lexer.cxx b/cli/lexer.cxx
index e6fc840..5fb907f 100644
--- a/cli/lexer.cxx
+++ b/cli/lexer.cxx
@@ -1,6 +1,6 @@
// file : cli/lexer.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <iostream>
diff --git a/cli/lexer.hxx b/cli/lexer.hxx
index 2584f5d..90b7649 100644
--- a/cli/lexer.hxx
+++ b/cli/lexer.hxx
@@ -1,6 +1,6 @@
// file : cli/lexer.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_LEXER_HXX
diff --git a/cli/lexer.ixx b/cli/lexer.ixx
index ae32afd..2045312 100644
--- a/cli/lexer.ixx
+++ b/cli/lexer.ixx
@@ -1,6 +1,6 @@
// file : cli/lexer.ixx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
// lexer::xchar
diff --git a/cli/man.cxx b/cli/man.cxx
index b3cf922..6ed072e 100644
--- a/cli/man.cxx
+++ b/cli/man.cxx
@@ -1,6 +1,6 @@
// file : cli/man.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <vector>
diff --git a/cli/man.hxx b/cli/man.hxx
index 41dd7a8..17d60d8 100644
--- a/cli/man.hxx
+++ b/cli/man.hxx
@@ -1,6 +1,6 @@
// file : cli/man.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_MAN_HXX
diff --git a/cli/name-processor.cxx b/cli/name-processor.cxx
index b5b65ff..c0f7179 100644
--- a/cli/name-processor.cxx
+++ b/cli/name-processor.cxx
@@ -1,6 +1,6 @@
// file : cli/name-processor.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <set>
diff --git a/cli/name-processor.hxx b/cli/name-processor.hxx
index 15edc7d..1ff8498 100644
--- a/cli/name-processor.hxx
+++ b/cli/name-processor.hxx
@@ -1,6 +1,6 @@
// file : cli/name-processor.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_NAME_PROCESSOR_HXX
diff --git a/cli/option-types.cxx b/cli/option-types.cxx
index a196ae4..66283ad 100644
--- a/cli/option-types.cxx
+++ b/cli/option-types.cxx
@@ -1,6 +1,6 @@
// file : cli/option-types.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <istream>
diff --git a/cli/option-types.hxx b/cli/option-types.hxx
index 6acfd4a..f048d88 100644
--- a/cli/option-types.hxx
+++ b/cli/option-types.hxx
@@ -1,6 +1,6 @@
// file : cli/option-types.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_OPTION_TYPES_HXX
diff --git a/cli/options.cli b/cli/options.cli
index bc00851..8781bc6 100644
--- a/cli/options.cli
+++ b/cli/options.cli
@@ -1,6 +1,6 @@
// file : cli/options.cli
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
// NOTE: Make sure you have a working CLI compiler around before
diff --git a/cli/parser.cxx b/cli/parser.cxx
index 1d1b6a8..c1e1075 100644
--- a/cli/parser.cxx
+++ b/cli/parser.cxx
@@ -1,6 +1,6 @@
// file : cli/parser.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef _WIN32
diff --git a/cli/parser.hxx b/cli/parser.hxx
index 578dd8d..1643ee4 100644
--- a/cli/parser.hxx
+++ b/cli/parser.hxx
@@ -1,6 +1,6 @@
// file : cli/parser.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_PARSER_HXX
diff --git a/cli/runtime-header.cxx b/cli/runtime-header.cxx
index 60e90cc..9d200bc 100644
--- a/cli/runtime-header.cxx
+++ b/cli/runtime-header.cxx
@@ -1,6 +1,6 @@
// file : cli/runtime-header.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cli/runtime-header.hxx>
diff --git a/cli/runtime-header.hxx b/cli/runtime-header.hxx
index 9955e33..ba25221 100644
--- a/cli/runtime-header.hxx
+++ b/cli/runtime-header.hxx
@@ -1,6 +1,6 @@
// file : cli/runtime-header.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_RUNTIME_HEADER_HXX
diff --git a/cli/runtime-inline.cxx b/cli/runtime-inline.cxx
index f6b1cee..18c5889 100644
--- a/cli/runtime-inline.cxx
+++ b/cli/runtime-inline.cxx
@@ -1,6 +1,6 @@
// file : cli/runtime-inline.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cli/runtime-inline.hxx>
diff --git a/cli/runtime-inline.hxx b/cli/runtime-inline.hxx
index 211ff2a..f1dc610 100644
--- a/cli/runtime-inline.hxx
+++ b/cli/runtime-inline.hxx
@@ -1,6 +1,6 @@
// file : cli/runtime-inline.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_RUNTIME_INLINE_HXX
diff --git a/cli/runtime-source.cxx b/cli/runtime-source.cxx
index d704386..f9248d9 100644
--- a/cli/runtime-source.cxx
+++ b/cli/runtime-source.cxx
@@ -1,6 +1,6 @@
// file : cli/runtime-source.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cli/runtime-source.hxx>
diff --git a/cli/runtime-source.hxx b/cli/runtime-source.hxx
index 6815cff..fbbddb6 100644
--- a/cli/runtime-source.hxx
+++ b/cli/runtime-source.hxx
@@ -1,6 +1,6 @@
// file : cli/runtime-source.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_RUNTIME_SOURCE_HXX
diff --git a/cli/semantics.hxx b/cli/semantics.hxx
index 6faf00f..6518a10 100644
--- a/cli/semantics.hxx
+++ b/cli/semantics.hxx
@@ -1,6 +1,6 @@
// file : cli/semantics.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_SEMANTICS_HXX
diff --git a/cli/semantics/class.cxx b/cli/semantics/class.cxx
index 4e3eb30..2e09683 100644
--- a/cli/semantics/class.cxx
+++ b/cli/semantics/class.cxx
@@ -1,6 +1,6 @@
// file : cli/semantics/class.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cutl/compiler/type-info.hxx>
diff --git a/cli/semantics/class.hxx b/cli/semantics/class.hxx
index 8024d7d..9ca44c8 100644
--- a/cli/semantics/class.hxx
+++ b/cli/semantics/class.hxx
@@ -1,6 +1,6 @@
// file : cli/semantics/class.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_SEMANTICS_CLASS_HXX
diff --git a/cli/semantics/doc.cxx b/cli/semantics/doc.cxx
index 10914aa..2e6ed25 100644
--- a/cli/semantics/doc.cxx
+++ b/cli/semantics/doc.cxx
@@ -1,6 +1,6 @@
// file : cli/semantics/doc.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cutl/compiler/type-info.hxx>
diff --git a/cli/semantics/doc.hxx b/cli/semantics/doc.hxx
index b855922..08c5d65 100644
--- a/cli/semantics/doc.hxx
+++ b/cli/semantics/doc.hxx
@@ -1,6 +1,6 @@
// file : cli/semantics/doc.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_SEMANTICS_DOC_HXX
diff --git a/cli/semantics/elements.cxx b/cli/semantics/elements.cxx
index e100615..6111d0e 100644
--- a/cli/semantics/elements.cxx
+++ b/cli/semantics/elements.cxx
@@ -1,6 +1,6 @@
// file : cli/semantics/elements.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cutl/compiler/type-info.hxx>
diff --git a/cli/semantics/elements.hxx b/cli/semantics/elements.hxx
index e1441cb..b25244d 100644
--- a/cli/semantics/elements.hxx
+++ b/cli/semantics/elements.hxx
@@ -1,6 +1,6 @@
// file : cli/semantics/elements.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_SEMANTICS_ELEMENTS_HXX
diff --git a/cli/semantics/expression.cxx b/cli/semantics/expression.cxx
index 20684ae..4cd53b2 100644
--- a/cli/semantics/expression.cxx
+++ b/cli/semantics/expression.cxx
@@ -1,6 +1,6 @@
// file : cli/semantics/expression.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cutl/compiler/type-info.hxx>
diff --git a/cli/semantics/expression.hxx b/cli/semantics/expression.hxx
index c672ede..c71d289 100644
--- a/cli/semantics/expression.hxx
+++ b/cli/semantics/expression.hxx
@@ -1,6 +1,6 @@
// file : cli/semantics/expression.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_SEMANTICS_EXPRESSION_HXX
diff --git a/cli/semantics/namespace.cxx b/cli/semantics/namespace.cxx
index 33921e6..733b103 100644
--- a/cli/semantics/namespace.cxx
+++ b/cli/semantics/namespace.cxx
@@ -1,6 +1,6 @@
// file : cli/semantics/namespace.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cutl/compiler/type-info.hxx>
diff --git a/cli/semantics/namespace.hxx b/cli/semantics/namespace.hxx
index 01dabf3..624222c 100644
--- a/cli/semantics/namespace.hxx
+++ b/cli/semantics/namespace.hxx
@@ -1,6 +1,6 @@
// file : cli/semantics/namespace.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_SEMANTICS_NAMESPACE_HXX
diff --git a/cli/semantics/option.cxx b/cli/semantics/option.cxx
index 4e8251e..d8af992 100644
--- a/cli/semantics/option.cxx
+++ b/cli/semantics/option.cxx
@@ -1,6 +1,6 @@
// file : cli/semantics/option.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cutl/compiler/type-info.hxx>
diff --git a/cli/semantics/option.hxx b/cli/semantics/option.hxx
index abb5580..c7082e2 100644
--- a/cli/semantics/option.hxx
+++ b/cli/semantics/option.hxx
@@ -1,6 +1,6 @@
// file : cli/semantics/option.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_SEMANTICS_OPTION_HXX
diff --git a/cli/semantics/unit.cxx b/cli/semantics/unit.cxx
index b02b4d1..482b4a1 100644
--- a/cli/semantics/unit.cxx
+++ b/cli/semantics/unit.cxx
@@ -1,6 +1,6 @@
// file : cli/semantics/unit.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cutl/compiler/type-info.hxx>
diff --git a/cli/semantics/unit.hxx b/cli/semantics/unit.hxx
index 23d93a5..76a2acd 100644
--- a/cli/semantics/unit.hxx
+++ b/cli/semantics/unit.hxx
@@ -1,6 +1,6 @@
// file : cli/semantics/unit.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_SEMANTICS_UNIT_HXX
diff --git a/cli/semantics/unit.txx b/cli/semantics/unit.txx
index 18d4def..03d6e54 100644
--- a/cli/semantics/unit.txx
+++ b/cli/semantics/unit.txx
@@ -1,6 +1,6 @@
// file : cli/semantics/unit.txx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
namespace semantics
diff --git a/cli/source.cxx b/cli/source.cxx
index 4f3e69a..3d0b7cc 100644
--- a/cli/source.cxx
+++ b/cli/source.cxx
@@ -1,6 +1,6 @@
// file : cli/source.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <iostream>
diff --git a/cli/source.hxx b/cli/source.hxx
index 04f1468..ad784fa 100644
--- a/cli/source.hxx
+++ b/cli/source.hxx
@@ -1,6 +1,6 @@
// file : cli/source.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_SOURCE_HXX
diff --git a/cli/token.hxx b/cli/token.hxx
index a6850e8..50b0607 100644
--- a/cli/token.hxx
+++ b/cli/token.hxx
@@ -1,6 +1,6 @@
// file : cli/token.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_TOKEN_HXX
diff --git a/cli/token.ixx b/cli/token.ixx
index e2360ce..4fabcc5 100644
--- a/cli/token.ixx
+++ b/cli/token.ixx
@@ -1,6 +1,6 @@
// file : cli/token.ixx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
inline token::token_type token::
diff --git a/cli/traversal.hxx b/cli/traversal.hxx
index 03019c4..4797802 100644
--- a/cli/traversal.hxx
+++ b/cli/traversal.hxx
@@ -1,6 +1,6 @@
// file : cli/traversal.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_TRAVERSAL_HXX
diff --git a/cli/traversal/class.cxx b/cli/traversal/class.cxx
index 4123766..633c086 100644
--- a/cli/traversal/class.cxx
+++ b/cli/traversal/class.cxx
@@ -1,6 +1,6 @@
// file : cli/traversal/class.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cli/traversal/class.hxx>
diff --git a/cli/traversal/class.hxx b/cli/traversal/class.hxx
index e2ea334..da106dc 100644
--- a/cli/traversal/class.hxx
+++ b/cli/traversal/class.hxx
@@ -1,6 +1,6 @@
// file : cli/traversal/class.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_TRAVERSAL_CLASS_HXX
diff --git a/cli/traversal/doc.hxx b/cli/traversal/doc.hxx
index 3875ea0..6b3d724 100644
--- a/cli/traversal/doc.hxx
+++ b/cli/traversal/doc.hxx
@@ -1,6 +1,6 @@
// file : cli/traversal/doc.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_TRAVERSAL_DOC_HXX
diff --git a/cli/traversal/elements.cxx b/cli/traversal/elements.cxx
index 5266bcc..e754d2b 100644
--- a/cli/traversal/elements.cxx
+++ b/cli/traversal/elements.cxx
@@ -1,6 +1,6 @@
// file : cli/traversal/elements.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cli/traversal/elements.hxx>
diff --git a/cli/traversal/elements.hxx b/cli/traversal/elements.hxx
index 31b408d..d0f5095 100644
--- a/cli/traversal/elements.hxx
+++ b/cli/traversal/elements.hxx
@@ -1,6 +1,6 @@
// file : cli/traversal/elements.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_TRAVERSAL_ELEMENTS_HXX
diff --git a/cli/traversal/expression.hxx b/cli/traversal/expression.hxx
index b3f1d60..e481fbe 100644
--- a/cli/traversal/expression.hxx
+++ b/cli/traversal/expression.hxx
@@ -1,6 +1,6 @@
// file : cli/traversal/expression.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_TRAVERSAL_EXPRESSION_HXX
diff --git a/cli/traversal/namespace.cxx b/cli/traversal/namespace.cxx
index 7d6aaf0..51c0963 100644
--- a/cli/traversal/namespace.cxx
+++ b/cli/traversal/namespace.cxx
@@ -1,6 +1,6 @@
// file : cli/traversal/namespace.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cli/traversal/namespace.hxx>
diff --git a/cli/traversal/namespace.hxx b/cli/traversal/namespace.hxx
index 394f588..025f16a 100644
--- a/cli/traversal/namespace.hxx
+++ b/cli/traversal/namespace.hxx
@@ -1,6 +1,6 @@
// file : cli/traversal/namespace.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_TRAVERSAL_NAMESPACE_HXX
diff --git a/cli/traversal/option.cxx b/cli/traversal/option.cxx
index ec0f3a3..03b0550 100644
--- a/cli/traversal/option.cxx
+++ b/cli/traversal/option.cxx
@@ -1,6 +1,6 @@
// file : cli/traversal/option.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cli/traversal/option.hxx>
diff --git a/cli/traversal/option.hxx b/cli/traversal/option.hxx
index e2be72d..cdf0790 100644
--- a/cli/traversal/option.hxx
+++ b/cli/traversal/option.hxx
@@ -1,6 +1,6 @@
// file : cli/traversal/option.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_TRAVERSAL_OPTION_HXX
diff --git a/cli/traversal/unit.cxx b/cli/traversal/unit.cxx
index d7ea6d5..6896375 100644
--- a/cli/traversal/unit.cxx
+++ b/cli/traversal/unit.cxx
@@ -1,6 +1,6 @@
// file : cli/traversal/unit.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cli/traversal/unit.hxx>
diff --git a/cli/traversal/unit.hxx b/cli/traversal/unit.hxx
index cddf23a..2aebbea 100644
--- a/cli/traversal/unit.hxx
+++ b/cli/traversal/unit.hxx
@@ -1,6 +1,6 @@
// file : cli/traversal/unit.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_TRAVERSAL_UNIT_HXX
diff --git a/cli/txt.cxx b/cli/txt.cxx
index b2d22fd..d5ae16b 100644
--- a/cli/txt.cxx
+++ b/cli/txt.cxx
@@ -1,6 +1,6 @@
// file : cli/txt.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <vector>
diff --git a/cli/txt.hxx b/cli/txt.hxx
index 7a32593..69427f3 100644
--- a/cli/txt.hxx
+++ b/cli/txt.hxx
@@ -1,6 +1,6 @@
// file : cli/txt.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_TXT_HXX
diff --git a/cli/version.hxx.in b/cli/version.hxx.in
index 4d5dd27..d5e8ff1 100644
--- a/cli/version.hxx.in
+++ b/cli/version.hxx.in
@@ -1,6 +1,6 @@
// file : cli/version.hxx.in
// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef CLI_VERSION // Note: using the version macro itself.