src/test/sym_graph_test.h
changeset 987 87f7c54892df
parent 986 e997802b855c
child 1164 80bb73097736
     1.1 --- a/src/test/sym_graph_test.h	Sat Nov 13 12:53:28 2004 +0000
     1.2 +++ b/src/test/sym_graph_test.h	Sat Nov 13 17:07:10 2004 +0000
     1.3 @@ -95,9 +95,9 @@
     1.4  	dm=cm; //Copy from another type
     1.5  	{
     1.6  	  //Check the typedef's
     1.7 -	  typename Graph::template SymEdgeMap<int>::ValueType val;
     1.8 +	  typename Graph::template SymEdgeMap<int>::Value val;
     1.9  	  val = 1;
    1.10 -	  typename Graph::template SymEdgeMap<int>::KeyType key;
    1.11 +	  typename Graph::template SymEdgeMap<int>::Key key;
    1.12  	  key = typename Graph::SymEdgeIt(G);
    1.13  	}
    1.14        }  
    1.15 @@ -118,9 +118,9 @@
    1.16  	m=dm; //Copy to another type
    1.17  	{
    1.18  	  //Check the typedef's
    1.19 -	  typename Graph::template SymEdgeMap<bool>::ValueType val;
    1.20 +	  typename Graph::template SymEdgeMap<bool>::Value val;
    1.21  	  val=true;
    1.22 -	  typename Graph::template SymEdgeMap<bool>::KeyType key;
    1.23 +	  typename Graph::template SymEdgeMap<bool>::Key key;
    1.24  	  key= typename Graph::SymEdgeIt(G);
    1.25  	}
    1.26        }