diff c/test_graph.cpp @ 230:bc4ea09b1743

compatibility modifications for visual studio compilation
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 29 Jun 2012 16:15:13 -0400
parents f7ddfc4aeb1e
children 249d65ff6c35
line wrap: on
line diff
--- a/c/test_graph.cpp	Wed May 16 02:23:49 2012 -0400
+++ b/c/test_graph.cpp	Fri Jun 29 16:15:13 2012 -0400
@@ -28,7 +28,7 @@
   BOOST_CHECK_EQUAL(featureGraph.getNEdges(), 1);
 
   featureGraph.connectedComponents(lastInstant);
-  vector<vector<unsigned int> > components = featureGraph.getFeatureGroups();
+  std::vector<std::vector<unsigned int> > components = featureGraph.getFeatureGroups();
   BOOST_CHECK_EQUAL(components.size(), 0);
   BOOST_CHECK_EQUAL(featureGraph.getNVertices(), 2);
   BOOST_CHECK_EQUAL(featureGraph.getNEdges(), 1);