aboutsummaryrefslogtreecommitdiff
path: root/odb/include.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/include.cxx')
-rw-r--r--odb/include.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/odb/include.cxx b/odb/include.cxx
index de3be4a..8d70b64 100644
--- a/odb/include.cxx
+++ b/odb/include.cxx
@@ -606,9 +606,9 @@ namespace include
f += ctx.options.odb_file_suffix ();
f += ctx.options.hxx_suffix ();
- ctx.os << "#include " <<
- (inc->type_ == include_directive::quote ? '"' : '<') << f <<
- (inc->type_ == include_directive::quote ? '"' : '>') << endl
+ char o (inc->type_ == include_directive::quote ? '"' : '<');
+ ctx.os << "#include " << ctx.process_include_path (
+ f.string (), false, o) << endl
<< endl;
}
}