From 90740ea8ea4fa1bb31844d9c89303b9ecc9223cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Fri, 23 Mar 2012 17:51:44 +0000 Subject: [PATCH] Fixed documentation comments [SVN r77505] --- test/vector_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/vector_test.cpp b/test/vector_test.cpp index 6e393be..cbc9721 100644 --- a/test/vector_test.cpp +++ b/test/vector_test.cpp @@ -108,13 +108,13 @@ int main() vector_int.insert(vector_int.begin(), 999); - vector_int.insert_at_ordered_positions(positions, positions_length, vector_int2.end()); + //vector_int.insert_at_ordered_positions(positions, positions_length, vector_int2.end()); for(std::size_t i = 0, max = vector_int.size(); i != max; ++i){ std::cout << vector_int[i] << std::endl; } return 0; -/* + recursive_vector_test(); { //Now test move semantics @@ -156,6 +156,6 @@ int main() return 1; return 0; - */ + } #include