Index: src/SynTree/Visitor.h
===================================================================
--- src/SynTree/Visitor.h	(revision e0886dba1ec9ab949bb8d227feb423286cb7057c)
+++ src/SynTree/Visitor.h	(revision aa72198ced56bbcddd28dbb3b919708fc8b12df3)
@@ -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 //
