aboutsummaryrefslogtreecommitdiff
path: root/xsde/cxx/elements.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsde/cxx/elements.cxx')
-rw-r--r--xsde/cxx/elements.cxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/xsde/cxx/elements.cxx b/xsde/cxx/elements.cxx
index 86d29e1..a67905d 100644
--- a/xsde/cxx/elements.cxx
+++ b/xsde/cxx/elements.cxx
@@ -1221,28 +1221,4 @@ namespace CXX
if (st_)
st_->leave ();
}
-
- // Include
- //
- Void Includes::
- traverse (SemanticGraph::Path const& path)
- {
- // Try to use the portable representation of the path. If that
- // fails, fall back to the native representation.
- //
- NarrowString path_str;
- try
- {
- path_str = path.string ();
- }
- catch (SemanticGraph::InvalidPath const&)
- {
- path_str = path.native_file_string ();
- }
-
- String hxx_path (expr_.merge (path_str));
-
- ctx_.os << "#include " << ctx_.process_include_path (hxx_path) << endl
- << endl;
- }
}