]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/print_pair.tpp
remove some unused stlplus modules
[chaz/yoink] / src / stlplus / strings / print_pair.tpp
diff --git a/src/stlplus/strings/print_pair.tpp b/src/stlplus/strings/print_pair.tpp
deleted file mode 100644 (file)
index 1d98050..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-
-//   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.019432 seconds and 4 git commands to generate.