]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/print_float.cpp
cleanup stlplus files
[chaz/yoink] / src / stlplus / strings / print_float.cpp
index a36c2c110875cd8b0a9489c87ef98354387d490a..dc10b200f503ea43c9b35e716c5c6b9b19979874 100644 (file)
@@ -1,32 +1,32 @@
-////////////////////////////////////////////////////////////////////////////////\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
-#include "print_float.hpp"\r
-#include "string_float.hpp"\r
-\r
-namespace stlplus\r
-{\r
-\r
-  ////////////////////////////////////////////////////////////////////////////////\r
-  // floating-point types\r
-\r
-  void print_float(std::ostream& device, float f, real_display_t display, unsigned width, unsigned precision)\r
-    throw(std::invalid_argument)\r
-  {\r
-    device << float_to_string(f, display, width, precision);\r
-  }\r
-\r
-  void print_double(std::ostream& device, double f, real_display_t display, unsigned width, unsigned precision)\r
-    throw(std::invalid_argument)\r
-  {\r
-    device << double_to_string(f, display, width, precision);\r
-  }\r
-\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
+
+////////////////////////////////////////////////////////////////////////////////
+#include "print_float.hpp"
+#include "string_float.hpp"
+
+namespace stlplus
+{
+
+  ////////////////////////////////////////////////////////////////////////////////
+  // floating-point types
+
+  void print_float(std::ostream& device, float f, real_display_t display, unsigned width, unsigned precision)
+    throw(std::invalid_argument)
+  {
+    device << float_to_string(f, display, width, precision);
+  }
+
+  void print_double(std::ostream& device, double f, real_display_t display, unsigned width, unsigned precision)
+    throw(std::invalid_argument)
+  {
+    device << double_to_string(f, display, width, precision);
+  }
+
+  ////////////////////////////////////////////////////////////////////////////////
+
+} // end namespace stlplus
This page took 0.019877 seconds and 4 git commands to generate.