]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/portability/build.cpp
cleanup stlplus files
[chaz/yoink] / src / stlplus / portability / build.cpp
index 6a9cd6445ff3577e7d37b647ad773f50153923c5..e591a34cbd6105456b97e599c4d4d95dc278bcc5 100644 (file)
@@ -1,60 +1,60 @@
-////////////////////////////////////////////////////////////////////////////////\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 "build.hpp"\r
-#include "version.hpp"\r
-#include "dprintf.hpp"\r
-////////////////////////////////////////////////////////////////////////////////\r
-\r
-namespace stlplus\r
-{\r
-\r
-  ////////////////////////////////////////////////////////////////////////////////\r
-  // report the platform-specific details of this build\r
-\r
-  std::string build(void)\r
-  {\r
-    ////////////////////////////////////////////////////////////////////////////////\r
-    // work out the platform\r
-\r
-#ifdef _WIN32\r
-    std::string platform("Windows");\r
-#else\r
-    // at present there are no variations between different Unix platforms so\r
-    // they all map onto the generic Unix platform\r
-    std::string platform("Generic Unix");\r
-#endif\r
-\r
-    ////////////////////////////////////////////////////////////////////////////////\r
-    // work out the compiler\r
-\r
-#if defined __GNUC__\r
-    std::string compiler(dformat("gcc v%s",__VERSION__));\r
-#elif defined _MSC_VER\r
-    std::string compiler(dformat("MSVC v%0.2f",((float)_MSC_VER)/100.0));\r
-#elif defined __BORLANDC__\r
-    std::string compiler(dformat("Borland v%d.%d",__BORLANDC__/256,__BORLANDC__/16%16));\r
-#else\r
-    std::string compiler("unknown compiler");\r
-#endif\r
-\r
-    ////////////////////////////////////////////////////////////////////////////////\r
-    // work out the kind of build\r
-    // there are two variants - debug and release\r
-\r
-#ifndef NDEBUG\r
-    std::string variant("debug");\r
-#else\r
-    std::string variant("release");\r
-#endif\r
-\r
-    return std::string("STLplus v") + version() + ", " + platform + ", " + compiler + ", " + variant;\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 "build.hpp"
+#include "version.hpp"
+#include "dprintf.hpp"
+////////////////////////////////////////////////////////////////////////////////
+
+namespace stlplus
+{
+
+  ////////////////////////////////////////////////////////////////////////////////
+  // report the platform-specific details of this build
+
+  std::string build(void)
+  {
+    ////////////////////////////////////////////////////////////////////////////////
+    // work out the platform
+
+#ifdef _WIN32
+    std::string platform("Windows");
+#else
+    // at present there are no variations between different Unix platforms so
+    // they all map onto the generic Unix platform
+    std::string platform("Generic Unix");
+#endif
+
+    ////////////////////////////////////////////////////////////////////////////////
+    // work out the compiler
+
+#if defined __GNUC__
+    std::string compiler(dformat("gcc v%s",__VERSION__));
+#elif defined _MSC_VER
+    std::string compiler(dformat("MSVC v%0.2f",((float)_MSC_VER)/100.0));
+#elif defined __BORLANDC__
+    std::string compiler(dformat("Borland v%d.%d",__BORLANDC__/256,__BORLANDC__/16%16));
+#else
+    std::string compiler("unknown compiler");
+#endif
+
+    ////////////////////////////////////////////////////////////////////////////////
+    // work out the kind of build
+    // there are two variants - debug and release
+
+#ifndef NDEBUG
+    std::string variant("debug");
+#else
+    std::string variant("release");
+#endif
+
+    return std::string("STLplus v") + version() + ", " + platform + ", " + compiler + ", " + variant;
+  }
+
+////////////////////////////////////////////////////////////////////////////////
+} // end namespace stlplus
This page took 0.020831 seconds and 4 git commands to generate.