]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/string_bitset.tpp
cleanup stlplus files
[chaz/yoink] / src / stlplus / strings / string_bitset.tpp
index 13b78a32a3f0879473e6762c9c2931de26c1c89b..b86a6120216a27de8af9a490636f27534094c62a 100644 (file)
@@ -1,22 +1,22 @@
-////////////////////////////////////////////////////////////////////////////////\r
-\r
-//   Author:    Andy Rushton\r
-//   Copyright: (c) Southampton University 1999-2004\r
-//              (c) Andy Rushton           2004-2009\r
-//   License:   BSD License, see ../docs/license.html\r
-\r
-////////////////////////////////////////////////////////////////////////////////\r
-\r
-namespace stlplus\r
-{\r
-\r
-  template<size_t N>\r
-  std::string bitset_to_string(const std::bitset<N>& data)\r
-  {\r
-    std::string result;\r
-    for (unsigned i = data.size(); i--; )\r
-      result += data.test(i) ? '1' : '0';\r
-    return result;\r
-  }\r
-\r
-} // end namespace stlplus\r
+////////////////////////////////////////////////////////////////////////////////
+
+//   Author:    Andy Rushton
+//   Copyright: (c) Southampton University 1999-2004
+//              (c) Andy Rushton           2004-2009
+//   License:   BSD License, see ../docs/license.html
+
+////////////////////////////////////////////////////////////////////////////////
+
+namespace stlplus
+{
+
+  template<size_t N>
+  std::string bitset_to_string(const std::bitset<N>& data)
+  {
+    std::string result;
+    for (unsigned i = data.size(); i--; )
+      result += data.test(i) ? '1' : '0';
+    return result;
+  }
+
+} // end namespace stlplus
This page took 0.019085 seconds and 4 git commands to generate.