Index: src/SynTree/Visitor.h
===================================================================
--- src/SynTree/Visitor.h	(revision b3f252a219989f7ab8f2f00efbcad32b69910b55)
+++ src/SynTree/Visitor.h	(revision 9dcb6539e06f9ebfe8593419da5d22e6d5af6fad)
@@ -148,31 +148,4 @@
 }
 
-template< typename Container, typename VisitorType >
-void acceptAllFold( Container &container, VisitorType &visitor, VisitorType &around ) {
-	SemanticError errors;
-	for ( typename Container::iterator i = container.begin(); i != container.end(); ++i ) {
-		try {
-			if ( *i ) {
-				VisitorType *v = new VisitorType;
-				(*i)->accept( *v );
-
-				typename Container::iterator nxt = i; nxt++; // forward_iterator
-				if ( nxt == container.end() )
-					visitor += *v;
-				else
-					visitor += *v + around;
-
-				delete v;
-			} // if
-		} catch( SemanticError &e ) {
-			e.set_location( (*i)->location );
-			errors.append( e );
-		} // try
-	} // for
-	if ( ! errors.isEmpty() ) {
-		throw errors;
-	} // if
-}
-
 // Local Variables: //
 // tab-width: 4 //
