aboutsummaryrefslogtreecommitdiff
path: root/xsde/cxx/hybrid/extraction-source.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsde/cxx/hybrid/extraction-source.cxx')
-rw-r--r--xsde/cxx/hybrid/extraction-source.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/xsde/cxx/hybrid/extraction-source.cxx b/xsde/cxx/hybrid/extraction-source.cxx
index a437613..3b98100 100644
--- a/xsde/cxx/hybrid/extraction-source.cxx
+++ b/xsde/cxx/hybrid/extraction-source.cxx
@@ -164,7 +164,7 @@ namespace CXX
{
// Nothing is serialized for fixed attributes.
//
- if (a.fixed ())
+ if (a.fixed_p ())
return;
SemanticGraph::Type& t (a.type ());
@@ -182,9 +182,9 @@ namespace CXX
os << "{";
- if (a.optional ())
+ if (a.optional_p ())
{
- if (!a.default_ ())
+ if (!a.default_p ())
{
os << "bool p;";
@@ -257,9 +257,9 @@ namespace CXX
<< "return false;";
}
- if (a.optional ())
+ if (a.optional_p ())
{
- if (!a.default_ ())
+ if (!a.default_p ())
{
os << "}"
<< "else" << endl