]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/test-string.cc
Doc-es: various updates.
[lilypond.git] / flower / test-string.cc
index 509aea072893c4a982fa30625c5ba81c6ee48efe..1967d43751caf4a7b5bdabf03dd5f802174185e1 100644 (file)
@@ -1,5 +1,3 @@
-#define STD_VECTOR 1
-
 #define HAVE_BOOST_LAMBDA 1
 #include "std-vector.hh"
 
@@ -7,18 +5,13 @@
 
 #include "yaffut.hh"
 
-#if !STD_VECTOR
-#define vector flower_vector
-#endif
-
 using namespace std;
 
-
 FUNC (string_split_join)
 {
   string orig = "a/bbbb/cc//d";
   vector<string> splits = string_split (orig, '/');
   string loop = string_join (splits, "/");
-  EQUAL(orig, loop);
-  EQUAL(splits.size (), size_t (5));
+  EQUAL (orig, loop);
+  EQUAL (splits.size (), size_t (5));
 }