aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/semantic-graph/compositors.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-05-09 17:23:47 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-05-09 17:23:47 +0200
commit90801c5afeb37e4297076bdd5354ba41a7009a3f (patch)
tree98960b76e80c46814f38d345c63d9fb6edcc5f22 /xsd-frontend/semantic-graph/compositors.cxx
parentcf2783f792ee634ffbbb36311c9f69956b1d107e (diff)
Use standard types instead of ones from libcult
Diffstat (limited to 'xsd-frontend/semantic-graph/compositors.cxx')
-rw-r--r--xsd-frontend/semantic-graph/compositors.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xsd-frontend/semantic-graph/compositors.cxx b/xsd-frontend/semantic-graph/compositors.cxx
index 8eaa5cf..60ba2aa 100644
--- a/xsd-frontend/semantic-graph/compositors.cxx
+++ b/xsd-frontend/semantic-graph/compositors.cxx
@@ -14,7 +14,7 @@ namespace XSDFrontend
// ContainsCompositor
//
ContainsCompositor::
- ContainsCompositor (UnsignedLong min, UnsignedLong max)
+ ContainsCompositor (unsigned long min, unsigned long max)
: compositor_ (0), container_ (0), min_ (min), max_ (max)
{
}
@@ -22,7 +22,7 @@ namespace XSDFrontend
// All
//
All::
- All (Path const& file, UnsignedLong line, UnsignedLong column)
+ All (Path const& file, unsigned long line, unsigned long column)
: Node (file, line, column)
{
}
@@ -30,7 +30,7 @@ namespace XSDFrontend
// Choice
//
Choice::
- Choice (Path const& file, UnsignedLong line, UnsignedLong column)
+ Choice (Path const& file, unsigned long line, unsigned long column)
: Node (file, line, column)
{
}
@@ -38,7 +38,7 @@ namespace XSDFrontend
// Sequence
//
Sequence::
- Sequence (Path const& file, UnsignedLong line, UnsignedLong column)
+ Sequence (Path const& file, unsigned long line, unsigned long column)
: Node (file, line, column)
{
}