aboutsummaryrefslogtreecommitdiff
path: root/xsde/cxx/parser/elements.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsde/cxx/parser/elements.cxx')
-rw-r--r--xsde/cxx/parser/elements.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xsde/cxx/parser/elements.cxx b/xsde/cxx/parser/elements.cxx
index 2f0c7e3..46518fa 100644
--- a/xsde/cxx/parser/elements.cxx
+++ b/xsde/cxx/parser/elements.cxx
@@ -171,7 +171,7 @@ namespace CXX
return t.context ().get<String> ("p:impl");
}
- Boolean Context::
+ bool Context::
has_facets (SemanticGraph::Complex& c)
{
if (restriction_p (c))
@@ -234,20 +234,20 @@ namespace CXX
// Includes
//
- Void TypeForward::
+ void TypeForward::
traverse (SemanticGraph::Type& t)
{
os << "class " << t.context ().get<String> (name_key_) << ";";
}
- Void Includes::
+ void Includes::
traverse_ (SemanticGraph::Uses& u)
{
// Support for weak (forward) inclusion used in the file-per-type
// compilation model.
//
SemanticGraph::Schema& s (u.schema ());
- Boolean weak (u.context ().count ("weak"));
+ bool weak (u.context ().count ("weak"));
if (weak && (type_ == header || type_ == impl_header))
{