summaryrefslogtreecommitdiff
path: root/cli/cli
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-12-17 12:45:45 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-02-24 16:44:14 +0300
commit41501ca607dd84f5836faed1fbaceaf48d8cb54a (patch)
tree2f93172898573e229aeef8b1b6744d220816e325 /cli/cli
parent276d476943a10bddf42b65302754e5e56367c465 (diff)
Adapt to cutl/ to libcutl/ rename
Diffstat (limited to 'cli/cli')
-rw-r--r--cli/cli/cli.cxx2
-rw-r--r--cli/cli/context.hxx6
-rw-r--r--cli/cli/generator.cxx6
-rw-r--r--cli/cli/semantics/class.cxx2
-rw-r--r--cli/cli/semantics/doc.cxx2
-rw-r--r--cli/cli/semantics/elements.cxx2
-rw-r--r--cli/cli/semantics/elements.hxx8
-rw-r--r--cli/cli/semantics/expression.cxx2
-rw-r--r--cli/cli/semantics/namespace.cxx2
-rw-r--r--cli/cli/semantics/option.cxx2
-rw-r--r--cli/cli/semantics/unit.cxx2
-rw-r--r--cli/cli/traversal/elements.hxx2
-rw-r--r--cli/cli/version.hxx.in2
13 files changed, 20 insertions, 20 deletions
diff --git a/cli/cli/cli.cxx b/cli/cli/cli.cxx
index 754c5ff..11cf6c0 100644
--- a/cli/cli/cli.cxx
+++ b/cli/cli/cli.cxx
@@ -8,7 +8,7 @@
#include <fstream>
#include <iostream>
-#include <cutl/compiler/code-stream.hxx>
+#include <libcutl/compiler/code-stream.hxx>
#include <cli/semantics/doc.hxx>
diff --git a/cli/cli/context.hxx b/cli/cli/context.hxx
index 633b8ad..66dcb24 100644
--- a/cli/cli/context.hxx
+++ b/cli/cli/context.hxx
@@ -12,9 +12,9 @@
#include <ostream>
#include <cstddef> // std::size_t
-#include <cutl/re.hxx>
-#include <cutl/shared-ptr.hxx>
-#include <cutl/fs/path.hxx>
+#include <libcutl/re.hxx>
+#include <libcutl/shared-ptr.hxx>
+#include <libcutl/fs/path.hxx>
#include <cli/options.hxx>
#include <cli/semantics.hxx>
diff --git a/cli/cli/generator.cxx b/cli/cli/generator.cxx
index df1b99e..b4e6640 100644
--- a/cli/cli/generator.cxx
+++ b/cli/cli/generator.cxx
@@ -7,10 +7,10 @@
#include <fstream>
#include <iostream>
-#include <cutl/fs/auto-remove.hxx>
+#include <libcutl/fs/auto-remove.hxx>
-#include <cutl/compiler/code-stream.hxx>
-#include <cutl/compiler/cxx-indenter.hxx>
+#include <libcutl/compiler/code-stream.hxx>
+#include <libcutl/compiler/cxx-indenter.hxx>
#include <cli/header.hxx>
#include <cli/inline.hxx>
diff --git a/cli/cli/semantics/class.cxx b/cli/cli/semantics/class.cxx
index 494d5d0..cd90f8e 100644
--- a/cli/cli/semantics/class.cxx
+++ b/cli/cli/semantics/class.cxx
@@ -2,7 +2,7 @@
// author : Boris Kolpackov <boris@codesynthesis.com>
// license : MIT; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <cli/semantics/class.hxx>
diff --git a/cli/cli/semantics/doc.cxx b/cli/cli/semantics/doc.cxx
index c31260c..a12893d 100644
--- a/cli/cli/semantics/doc.cxx
+++ b/cli/cli/semantics/doc.cxx
@@ -2,7 +2,7 @@
// author : Boris Kolpackov <boris@codesynthesis.com>
// license : MIT; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <cli/semantics/doc.hxx>
diff --git a/cli/cli/semantics/elements.cxx b/cli/cli/semantics/elements.cxx
index ed8eb7d..3c43f91 100644
--- a/cli/cli/semantics/elements.cxx
+++ b/cli/cli/semantics/elements.cxx
@@ -2,7 +2,7 @@
// author : Boris Kolpackov <boris@codesynthesis.com>
// license : MIT; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <cli/semantics/elements.hxx>
diff --git a/cli/cli/semantics/elements.hxx b/cli/cli/semantics/elements.hxx
index 6235a06..e43f707 100644
--- a/cli/cli/semantics/elements.hxx
+++ b/cli/cli/semantics/elements.hxx
@@ -14,12 +14,12 @@
#include <utility> // std::pair
#include <cassert>
-#include <cutl/fs/path.hxx>
+#include <libcutl/fs/path.hxx>
-#include <cutl/container/graph.hxx>
-#include <cutl/container/pointer-iterator.hxx>
+#include <libcutl/container/graph.hxx>
+#include <libcutl/container/pointer-iterator.hxx>
-#include <cutl/compiler/context.hxx>
+#include <libcutl/compiler/context.hxx>
namespace semantics
{
diff --git a/cli/cli/semantics/expression.cxx b/cli/cli/semantics/expression.cxx
index 18d3312..5d1260d 100644
--- a/cli/cli/semantics/expression.cxx
+++ b/cli/cli/semantics/expression.cxx
@@ -2,7 +2,7 @@
// author : Boris Kolpackov <boris@codesynthesis.com>
// license : MIT; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <cli/semantics/expression.hxx>
diff --git a/cli/cli/semantics/namespace.cxx b/cli/cli/semantics/namespace.cxx
index 3c2643c..b9ed422 100644
--- a/cli/cli/semantics/namespace.cxx
+++ b/cli/cli/semantics/namespace.cxx
@@ -2,7 +2,7 @@
// author : Boris Kolpackov <boris@codesynthesis.com>
// license : MIT; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <cli/semantics/namespace.hxx>
diff --git a/cli/cli/semantics/option.cxx b/cli/cli/semantics/option.cxx
index 8746a5e..215a169 100644
--- a/cli/cli/semantics/option.cxx
+++ b/cli/cli/semantics/option.cxx
@@ -2,7 +2,7 @@
// author : Boris Kolpackov <boris@codesynthesis.com>
// license : MIT; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <cli/semantics/option.hxx>
diff --git a/cli/cli/semantics/unit.cxx b/cli/cli/semantics/unit.cxx
index 9c532ea..690011f 100644
--- a/cli/cli/semantics/unit.cxx
+++ b/cli/cli/semantics/unit.cxx
@@ -2,7 +2,7 @@
// author : Boris Kolpackov <boris@codesynthesis.com>
// license : MIT; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <cli/semantics/unit.hxx>
diff --git a/cli/cli/traversal/elements.hxx b/cli/cli/traversal/elements.hxx
index a2ada23..f56de49 100644
--- a/cli/cli/traversal/elements.hxx
+++ b/cli/cli/traversal/elements.hxx
@@ -5,7 +5,7 @@
#ifndef CLI_TRAVERSAL_ELEMENTS_HXX
#define CLI_TRAVERSAL_ELEMENTS_HXX
-#include <cutl/compiler/traversal.hxx>
+#include <libcutl/compiler/traversal.hxx>
#include <cli/semantics/elements.hxx>
diff --git a/cli/cli/version.hxx.in b/cli/cli/version.hxx.in
index ceb5389..11db861 100644
--- a/cli/cli/version.hxx.in
+++ b/cli/cli/version.hxx.in
@@ -38,7 +38,7 @@
#define CLI_VERSION_FULL "$cli.version$"
-#include <cutl/version.hxx>
+#include <libcutl/version.hxx>
$libcutl.check(LIBCUTL_VERSION, LIBCUTL_SNAPSHOT)$