summaryrefslogtreecommitdiff
path: root/odb/semantics/enum.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/semantics/enum.cxx')
-rw-r--r--odb/semantics/enum.cxx16
1 files changed, 12 insertions, 4 deletions
diff --git a/odb/semantics/enum.cxx b/odb/semantics/enum.cxx
index f324716..56be2fc 100644
--- a/odb/semantics/enum.cxx
+++ b/odb/semantics/enum.cxx
@@ -14,14 +14,22 @@ namespace semantics
}
enumerator::
- enumerator (path const& file, size_t line, size_t column, tree tn)
- : node (file, line, column, tn)
+ enumerator (path const& file,
+ size_t line,
+ size_t column,
+ tree tn,
+ unsigned long long value)
+ : node (file, line, column, tn), value_ (value)
{
}
enum_::
- enum_ (path const& file, size_t line, size_t column, tree tn)
- : node (file, line, column, tn)
+ enum_ (path const& file,
+ size_t line,
+ size_t column,
+ tree tn,
+ bool unsigned_)
+ : node (file, line, column, tn), unsigned__ (unsigned_)
{
}