aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-12-17 12:56:05 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-02-24 16:52:44 +0300
commitfaf35acd52de1b4d918f07ba73b39d44f22f0a7e (patch)
tree4d62823164fa24fe640faae52471a57247080e53
parent398c7ad035b4c9afb261dacce38f9ac74822e8ca (diff)
Adapt to cutl/ to libcutl/ rename
-rw-r--r--odb/context.hxx4
-rw-r--r--odb/diagnostics.hxx2
-rw-r--r--odb/generator.cxx12
-rw-r--r--odb/location.hxx2
-rw-r--r--odb/odb.cxx2
-rw-r--r--odb/plugin.cxx4
-rw-r--r--odb/pragma.hxx6
-rw-r--r--odb/profile.hxx2
-rw-r--r--odb/relational/generate.hxx2
-rw-r--r--odb/semantics/class-template.cxx2
-rw-r--r--odb/semantics/class.cxx2
-rw-r--r--odb/semantics/derived.cxx2
-rw-r--r--odb/semantics/elements.cxx2
-rw-r--r--odb/semantics/elements.hxx10
-rw-r--r--odb/semantics/enum.cxx2
-rw-r--r--odb/semantics/fundamental.cxx2
-rw-r--r--odb/semantics/namespace.cxx2
-rw-r--r--odb/semantics/relational/changelog.cxx2
-rw-r--r--odb/semantics/relational/changeset.cxx2
-rw-r--r--odb/semantics/relational/column.cxx2
-rw-r--r--odb/semantics/relational/elements.cxx2
-rw-r--r--odb/semantics/relational/elements.hxx10
-rw-r--r--odb/semantics/relational/foreign-key.cxx2
-rw-r--r--odb/semantics/relational/index.cxx2
-rw-r--r--odb/semantics/relational/key.cxx2
-rw-r--r--odb/semantics/relational/model.cxx2
-rw-r--r--odb/semantics/relational/primary-key.cxx2
-rw-r--r--odb/semantics/relational/table.cxx2
-rw-r--r--odb/semantics/template.cxx2
-rw-r--r--odb/semantics/union-template.cxx2
-rw-r--r--odb/semantics/union.cxx2
-rw-r--r--odb/semantics/unit.cxx2
-rw-r--r--odb/traversal/elements.hxx2
-rw-r--r--odb/traversal/relational/elements.hxx2
34 files changed, 51 insertions, 51 deletions
diff --git a/odb/context.hxx b/odb/context.hxx
index da975f3..d10d555 100644
--- a/odb/context.hxx
+++ b/odb/context.hxx
@@ -17,8 +17,8 @@
#include <cstddef> // std::size_t
#include <iostream>
-#include <cutl/re.hxx>
-#include <cutl/shared-ptr.hxx>
+#include <libcutl/re.hxx>
+#include <libcutl/shared-ptr.hxx>
#include <odb/options.hxx>
#include <odb/features.hxx>
diff --git a/odb/diagnostics.hxx b/odb/diagnostics.hxx
index 91ec068..46f2272 100644
--- a/odb/diagnostics.hxx
+++ b/odb/diagnostics.hxx
@@ -10,7 +10,7 @@
#include <cstddef>
#include <iostream>
-#include <cutl/fs/path.hxx>
+#include <libcutl/fs/path.hxx>
#include <odb/location.hxx>
diff --git a/odb/generator.cxx b/odb/generator.cxx
index 09a971c..ec0fefe 100644
--- a/odb/generator.cxx
+++ b/odb/generator.cxx
@@ -9,18 +9,18 @@
#include <sstream>
#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 <cutl/compiler/sloc-counter.hxx>
+#include <libcutl/compiler/code-stream.hxx>
+#include <libcutl/compiler/cxx-indenter.hxx>
+#include <libcutl/compiler/sloc-counter.hxx>
#ifdef ODB_BUILD2
#include <libstudxml/parser.hxx>
#include <libstudxml/serializer.hxx>
#else
-#include <cutl/xml/parser.hxx>
-#include <cutl/xml/serializer.hxx>
+#include <libcutl/xml/parser.hxx>
+#include <libcutl/xml/serializer.hxx>
#endif
#include <odb/version.hxx>
diff --git a/odb/location.hxx b/odb/location.hxx
index b16018b..cc59196 100644
--- a/odb/location.hxx
+++ b/odb/location.hxx
@@ -7,7 +7,7 @@
#include <odb/gcc-fwd.hxx>
#include <cstddef>
-#include <cutl/fs/path.hxx>
+#include <libcutl/fs/path.hxx>
struct location
{
diff --git a/odb/odb.cxx b/odb/odb.cxx
index 225cc21..2854fbb 100644
--- a/odb/odb.cxx
+++ b/odb/odb.cxx
@@ -31,7 +31,7 @@
#include <iostream>
#include <ext/stdio_filebuf.h>
-#include <cutl/fs/path.hxx>
+#include <libcutl/fs/path.hxx>
#include <odb/version.hxx>
#include <odb/options.hxx>
diff --git a/odb/plugin.cxx b/odb/plugin.cxx
index aff90ee..c065a8a 100644
--- a/odb/plugin.cxx
+++ b/odb/plugin.cxx
@@ -14,8 +14,8 @@
#include <cassert>
#include <iostream>
-#include <cutl/re.hxx>
-#include <cutl/fs/path.hxx>
+#include <libcutl/re.hxx>
+#include <libcutl/fs/path.hxx>
#include <odb/pragma.hxx>
#include <odb/parser.hxx>
diff --git a/odb/pragma.hxx b/odb/pragma.hxx
index 45b3528..0d4d3f1 100644
--- a/odb/pragma.hxx
+++ b/odb/pragma.hxx
@@ -13,9 +13,9 @@
#include <odb/option-types.hxx> // database
-#include <cutl/container/any.hxx>
-#include <cutl/container/multi-index.hxx>
-#include <cutl/compiler/context.hxx>
+#include <libcutl/container/any.hxx>
+#include <libcutl/container/multi-index.hxx>
+#include <libcutl/compiler/context.hxx>
struct virt_declaration
{
diff --git a/odb/profile.hxx b/odb/profile.hxx
index 8b892dc..b6e8e53 100644
--- a/odb/profile.hxx
+++ b/odb/profile.hxx
@@ -8,7 +8,7 @@
#include <vector>
#include <string>
-#include <cutl/fs/path.hxx>
+#include <libcutl/fs/path.hxx>
#include <odb/option-types.hxx>
diff --git a/odb/relational/generate.hxx b/odb/relational/generate.hxx
index c3d19c7..e597fb8 100644
--- a/odb/relational/generate.hxx
+++ b/odb/relational/generate.hxx
@@ -5,7 +5,7 @@
#define ODB_RELATIONAL_GENERATE_HXX
#include <string>
-#include <cutl/shared-ptr.hxx>
+#include <libcutl/shared-ptr.hxx>
#include <odb/context.hxx>
#include <odb/semantics/relational/model.hxx>
diff --git a/odb/semantics/class-template.cxx b/odb/semantics/class-template.cxx
index d764b79..f8bbca4 100644
--- a/odb/semantics/class-template.cxx
+++ b/odb/semantics/class-template.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/class-template.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/class-template.hxx>
namespace semantics
diff --git a/odb/semantics/class.cxx b/odb/semantics/class.cxx
index acecb35..97cf088 100644
--- a/odb/semantics/class.cxx
+++ b/odb/semantics/class.cxx
@@ -3,7 +3,7 @@
#include <odb/gcc.hxx> // TYPE_HAS_DEFAULT_CONSTRUCTOR
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/class.hxx>
namespace semantics
diff --git a/odb/semantics/derived.cxx b/odb/semantics/derived.cxx
index 9cf1504..771ad21 100644
--- a/odb/semantics/derived.cxx
+++ b/odb/semantics/derived.cxx
@@ -3,7 +3,7 @@
#include <sstream>
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/derived.hxx>
using namespace std;
diff --git a/odb/semantics/elements.cxx b/odb/semantics/elements.cxx
index 2d266cf..fba9b9b 100644
--- a/odb/semantics/elements.cxx
+++ b/odb/semantics/elements.cxx
@@ -3,7 +3,7 @@
#include <odb/gcc.hxx>
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/cxx-lexer.hxx>
diff --git a/odb/semantics/elements.hxx b/odb/semantics/elements.hxx
index 12164ba..699a1be 100644
--- a/odb/semantics/elements.hxx
+++ b/odb/semantics/elements.hxx
@@ -13,11 +13,11 @@
#include <utility> // std::pair
#include <cassert>
-#include <cutl/fs/path.hxx>
-#include <cutl/container/graph.hxx>
-#include <cutl/container/pointer-iterator.hxx>
-#include <cutl/compiler/type-id.hxx>
-#include <cutl/compiler/context.hxx>
+#include <libcutl/fs/path.hxx>
+#include <libcutl/container/graph.hxx>
+#include <libcutl/container/pointer-iterator.hxx>
+#include <libcutl/compiler/type-id.hxx>
+#include <libcutl/compiler/context.hxx>
#include <odb/gcc-fwd.hxx>
#include <odb/location.hxx>
diff --git a/odb/semantics/enum.cxx b/odb/semantics/enum.cxx
index 7fd8204..6432986 100644
--- a/odb/semantics/enum.cxx
+++ b/odb/semantics/enum.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/enum.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/enum.hxx>
namespace semantics
diff --git a/odb/semantics/fundamental.cxx b/odb/semantics/fundamental.cxx
index 82446a1..ed4a67f 100644
--- a/odb/semantics/fundamental.cxx
+++ b/odb/semantics/fundamental.cxx
@@ -3,7 +3,7 @@
#include <odb/gcc.hxx>
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/fundamental.hxx>
namespace semantics
diff --git a/odb/semantics/namespace.cxx b/odb/semantics/namespace.cxx
index 0e1442c..d9be903 100644
--- a/odb/semantics/namespace.cxx
+++ b/odb/semantics/namespace.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/namespace.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/namespace.hxx>
namespace semantics
diff --git a/odb/semantics/relational/changelog.cxx b/odb/semantics/relational/changelog.cxx
index 8cee9dd..353497f 100644
--- a/odb/semantics/relational/changelog.cxx
+++ b/odb/semantics/relational/changelog.cxx
@@ -4,7 +4,7 @@
#include <vector>
#include <sstream>
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/relational/changelog.hxx>
#include <odb/semantics/relational/model.hxx>
diff --git a/odb/semantics/relational/changeset.cxx b/odb/semantics/relational/changeset.cxx
index e643285..b044a0c 100644
--- a/odb/semantics/relational/changeset.cxx
+++ b/odb/semantics/relational/changeset.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/relational/changeset.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/relational/changeset.hxx>
diff --git a/odb/semantics/relational/column.cxx b/odb/semantics/relational/column.cxx
index e62a460..9d4d6e5 100644
--- a/odb/semantics/relational/column.cxx
+++ b/odb/semantics/relational/column.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/relational/column.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/relational/column.hxx>
diff --git a/odb/semantics/relational/elements.cxx b/odb/semantics/relational/elements.cxx
index 192c882..de1878a 100644
--- a/odb/semantics/relational/elements.cxx
+++ b/odb/semantics/relational/elements.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/relational/elements.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/relational/elements.hxx>
#include <odb/semantics/relational/column.hxx>
diff --git a/odb/semantics/relational/elements.hxx b/odb/semantics/relational/elements.hxx
index 61cd4f3..06ec552 100644
--- a/odb/semantics/relational/elements.hxx
+++ b/odb/semantics/relational/elements.hxx
@@ -10,16 +10,16 @@
#include <string>
#include <cassert>
-#include <cutl/container/graph.hxx>
-#include <cutl/container/pointer-iterator.hxx>
-#include <cutl/compiler/context.hxx>
+#include <libcutl/container/graph.hxx>
+#include <libcutl/container/pointer-iterator.hxx>
+#include <libcutl/compiler/context.hxx>
#ifdef ODB_BUILD2
#include <libstudxml/parser.hxx>
#include <libstudxml/serializer.hxx>
#else
-#include <cutl/xml/parser.hxx>
-#include <cutl/xml/serializer.hxx>
+#include <libcutl/xml/parser.hxx>
+#include <libcutl/xml/serializer.hxx>
namespace cutl {namespace xml {typedef parser content;}}
#endif
diff --git a/odb/semantics/relational/foreign-key.cxx b/odb/semantics/relational/foreign-key.cxx
index b4c85f9..0357d95 100644
--- a/odb/semantics/relational/foreign-key.cxx
+++ b/odb/semantics/relational/foreign-key.cxx
@@ -4,7 +4,7 @@
#include <ostream>
#include <istream>
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/relational/foreign-key.hxx>
diff --git a/odb/semantics/relational/index.cxx b/odb/semantics/relational/index.cxx
index 7e6bb94..2329f3a 100644
--- a/odb/semantics/relational/index.cxx
+++ b/odb/semantics/relational/index.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/relational/index.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/relational/index.hxx>
diff --git a/odb/semantics/relational/key.cxx b/odb/semantics/relational/key.cxx
index 318fe96..3511618 100644
--- a/odb/semantics/relational/key.cxx
+++ b/odb/semantics/relational/key.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/relational/key.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/relational/key.hxx>
#include <odb/semantics/relational/column.hxx>
diff --git a/odb/semantics/relational/model.cxx b/odb/semantics/relational/model.cxx
index b300274..8763045 100644
--- a/odb/semantics/relational/model.cxx
+++ b/odb/semantics/relational/model.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/relational/model.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/relational/model.hxx>
diff --git a/odb/semantics/relational/primary-key.cxx b/odb/semantics/relational/primary-key.cxx
index 043374f..235340f 100644
--- a/odb/semantics/relational/primary-key.cxx
+++ b/odb/semantics/relational/primary-key.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/relational/primary-key.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/relational/primary-key.hxx>
diff --git a/odb/semantics/relational/table.cxx b/odb/semantics/relational/table.cxx
index b9700b1..3bf763d 100644
--- a/odb/semantics/relational/table.cxx
+++ b/odb/semantics/relational/table.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/relational/table.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/relational/table.hxx>
diff --git a/odb/semantics/template.cxx b/odb/semantics/template.cxx
index d49cf20..f492be0 100644
--- a/odb/semantics/template.cxx
+++ b/odb/semantics/template.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/template.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/template.hxx>
namespace semantics
diff --git a/odb/semantics/union-template.cxx b/odb/semantics/union-template.cxx
index f2c3f94..21fc9c0 100644
--- a/odb/semantics/union-template.cxx
+++ b/odb/semantics/union-template.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/union-template.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/union-template.hxx>
namespace semantics
diff --git a/odb/semantics/union.cxx b/odb/semantics/union.cxx
index 980dfa4..007ef57 100644
--- a/odb/semantics/union.cxx
+++ b/odb/semantics/union.cxx
@@ -1,7 +1,7 @@
// file : odb/semantics/union.cxx
// license : GNU GPL v3; see accompanying LICENSE file
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/union.hxx>
namespace semantics
diff --git a/odb/semantics/unit.cxx b/odb/semantics/unit.cxx
index fe191bc..4f92aed 100644
--- a/odb/semantics/unit.cxx
+++ b/odb/semantics/unit.cxx
@@ -3,7 +3,7 @@
#include <odb/gcc.hxx>
-#include <cutl/compiler/type-info.hxx>
+#include <libcutl/compiler/type-info.hxx>
#include <odb/semantics/unit.hxx>
namespace semantics
diff --git a/odb/traversal/elements.hxx b/odb/traversal/elements.hxx
index c4236ce..d67a6d8 100644
--- a/odb/traversal/elements.hxx
+++ b/odb/traversal/elements.hxx
@@ -4,7 +4,7 @@
#ifndef ODB_TRAVERSAL_ELEMENTS_HXX
#define ODB_TRAVERSAL_ELEMENTS_HXX
-#include <cutl/compiler/traversal.hxx>
+#include <libcutl/compiler/traversal.hxx>
#include <odb/semantics/elements.hxx>
namespace traversal
diff --git a/odb/traversal/relational/elements.hxx b/odb/traversal/relational/elements.hxx
index 9ecdc6a..2b43ab0 100644
--- a/odb/traversal/relational/elements.hxx
+++ b/odb/traversal/relational/elements.hxx
@@ -4,7 +4,7 @@
#ifndef ODB_TRAVERSAL_RELATIONAL_ELEMENTS_HXX
#define ODB_TRAVERSAL_RELATIONAL_ELEMENTS_HXX
-#include <cutl/compiler/traversal.hxx>
+#include <libcutl/compiler/traversal.hxx>
#include <odb/semantics/relational/elements.hxx>
namespace traversal