aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/traversal/particle.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/traversal/particle.cxx
parentcf2783f792ee634ffbbb36311c9f69956b1d107e (diff)
Use standard types instead of ones from libcult
Diffstat (limited to 'xsd-frontend/traversal/particle.cxx')
-rw-r--r--xsd-frontend/traversal/particle.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xsd-frontend/traversal/particle.cxx b/xsd-frontend/traversal/particle.cxx
index 02bdc25..82bf609 100644
--- a/xsd-frontend/traversal/particle.cxx
+++ b/xsd-frontend/traversal/particle.cxx
@@ -11,19 +11,19 @@ namespace XSDFrontend
{
// Particle
//
- Void Particle::
+ void Particle::
traverse (Type& c)
{
pre (c);
post (c);
}
- Void Particle::
+ void Particle::
pre (Type&)
{
}
- Void Particle::
+ void Particle::
post (Type&)
{
}