]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/string_vector.cpp
remove some unused stlplus modules
[chaz/yoink] / src / stlplus / strings / string_vector.cpp
diff --git a/src/stlplus/strings/string_vector.cpp b/src/stlplus/strings/string_vector.cpp
deleted file mode 100644 (file)
index 66868bc..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-
-//   Author:    Andy Rushton
-//   Copyright: (c) Southampton University 1999-2004
-//              (c) Andy Rushton           2004-2009
-//   License:   BSD License, see ../docs/license.html
-
-////////////////////////////////////////////////////////////////////////////////
-#include "string_vector.hpp"
-
-namespace stlplus
-{
-
-  ////////////////////////////////////////////////////////////////////////////////
-  // special case of vector<bool>
-
-  std::string bool_vector_to_string(const std::vector<bool>& values)
-  {
-    std::string result;
-    for (size_t i = 0; i < values.size(); i++)
-      result.append(1, values[i] ? '1' : '0');
-    return result;
-  }
-
-  ////////////////////////////////////////////////////////////////////////////////
-
-} // end namespace stlplus
This page took 0.019089 seconds and 4 git commands to generate.