aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/traversal/list.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd-frontend/traversal/list.cxx')
-rw-r--r--xsd-frontend/traversal/list.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/xsd-frontend/traversal/list.cxx b/xsd-frontend/traversal/list.cxx
index 523a43c..39203d6 100644
--- a/xsd-frontend/traversal/list.cxx
+++ b/xsd-frontend/traversal/list.cxx
@@ -9,7 +9,7 @@ namespace XSDFrontend
{
namespace Traversal
{
- Void List::
+ void List::
traverse (Type& l)
{
pre (l);
@@ -18,29 +18,29 @@ namespace XSDFrontend
post (l);
}
- Void List::
+ void List::
pre (Type&)
{
}
- Void List::
+ void List::
argumented (Type& l)
{
argumented (l, *this);
}
- Void List::
+ void List::
argumented (Type& l, EdgeDispatcher& d)
{
d.dispatch (l.argumented ());
}
- Void List::
+ void List::
name (Type&)
{
}
- Void List::
+ void List::
post (Type&)
{
}