aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-12-09 11:47:55 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-12-09 11:47:55 +0200
commita35131e29b9290550a2991027ec5ceb3bea014c4 (patch)
tree128a336de84cc8e81cfa404985c30c80b7a582e1
parent5adda85ed10d9196f4d68cc4b8fee12f6ba9cfec (diff)
Cosmetic changes
-rw-r--r--odb/header.cxx4
-rw-r--r--odb/odb.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/odb/header.cxx b/odb/header.cxx
index f838fb1..12f201e 100644
--- a/odb/header.cxx
+++ b/odb/header.cxx
@@ -96,13 +96,13 @@ generate_header (context& ctx)
if (ctx.unit.count ("tr1-pointer-used") &&
ctx.unit.get<bool> ("tr1-pointer-used"))
{
- ctx.os << "#include <odb/tr1-pointer-traits.hxx>" << endl;
+ ctx.os << "#include <odb/tr1/pointer-traits.hxx>" << endl;
}
else if (ctx.unit.count ("boost-pointer-used") &&
ctx.unit.get<bool> ("boost-pointer-used"))
{
ctx.os << "#ifdef BOOST_TR1_MEMORY_HPP_INCLUDED" << endl
- << "# include <odb/tr1-pointer-traits.hxx>" << endl
+ << "# include <odb/tr1/pointer-traits.hxx>" << endl
<< "#endif" << endl;
}
diff --git a/odb/odb.cxx b/odb/odb.cxx
index 401e688..b27c028 100644
--- a/odb/odb.cxx
+++ b/odb/odb.cxx
@@ -547,7 +547,7 @@ main (int argc, char* argv[])
// Standard pointer traits.
//
os << "#include <odb/pointer-traits.hxx>" << endl
- << "#include <odb/tr1-pointer-traits.hxx>" << endl;
+ << "#include <odb/tr1/pointer-traits.hxx>" << endl;
// Standard container traits.
//