]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/print_pair.tpp
cleanup stlplus files
[chaz/yoink] / src / stlplus / strings / print_pair.tpp
index a93c0c0482fbd8e02624c3d86e9b69efeb1a04fe..1d98050c0d8edd2f76e2580003df22b88b01d68f 100644 (file)
@@ -1,25 +1,25 @@
-////////////////////////////////////////////////////////////////////////////////\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<typename V1, typename V2, typename S1, typename S2>\r
-  void print_pair(std::ostream& device,\r
-                  const std::pair<V1,V2>& values,\r
-                  S1 print_fn1,\r
-                  S2 print_fn2,\r
-                  const std::string& separator)\r
-  {\r
-    print_fn1(device, values.first);\r
-    device << separator;\r
-    print__fn2(device, values.second);\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<typename V1, typename V2, typename S1, typename S2>
+  void print_pair(std::ostream& device,
+                  const std::pair<V1,V2>& values,
+                  S1 print_fn1,
+                  S2 print_fn2,
+                  const std::string& separator)
+  {
+    print_fn1(device, values.first);
+    device << separator;
+    print__fn2(device, values.second);
+  }
+
+} // end namespace stlplus
This page took 0.020819 seconds and 4 git commands to generate.