[Lemon-commits] [lemon_svn] alpar: r1010 - hugo/trunk/src/benchmark
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:42:42 CET 2006
Author: alpar
Date: Wed Aug 4 20:43:51 2004
New Revision: 1010
Modified:
hugo/trunk/src/benchmark/bench_tools.h
Log:
Bugfix in GRAPH_TYPEDEF_FACTORY
Modified: hugo/trunk/src/benchmark/bench_tools.h
==============================================================================
--- hugo/trunk/src/benchmark/bench_tools.h (original)
+++ hugo/trunk/src/benchmark/bench_tools.h Wed Aug 4 20:43:51 2004
@@ -10,7 +10,7 @@
///An experimental typedef factory
#define GRAPH_TYPEDEF_FACTORY(Graph) \
typedef typename Graph:: Node Node;\
- typedef typename Graph:: NodeIt NodeIn;\
+ typedef typename Graph:: NodeIt NodeIt;\
typedef typename Graph:: Edge Edge;\
typedef typename Graph:: EdgeIt EdgeIt;\
typedef typename Graph:: InEdgeIt InEdgeIt;\
@@ -18,7 +18,7 @@
#define GRAPH_TYPEDEF_FACTORY_NOTYPENAME(Graph) \
typedef Graph:: Node Node;\
- typedef Graph:: NodeIt NodeIn;\
+ typedef Graph:: NodeIt NodeIt;\
typedef Graph:: Edge Edge;\
typedef Graph:: EdgeIt EdgeIt;\
typedef Graph:: InEdgeIt InEdgeIt;\
More information about the Lemon-commits
mailing list