summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-01-31 13:21:35 (GMT)
committerBrad King <brad.king@kitware.com>2008-01-31 13:21:35 (GMT)
commite3c2c1923a9e9b46101bdc84b9e5a7601a95909d (patch)
tree52be202ad1e392758b1c6cfa050dae1dd3c35f20 /Source
parentd81875fb87e297ffd8d73137fdb6d84023f58d6a (diff)
downloadCMake-e3c2c1923a9e9b46101bdc84b9e5a7601a95909d.zip
CMake-e3c2c1923a9e9b46101bdc84b9e5a7601a95909d.tar.gz
CMake-e3c2c1923a9e9b46101bdc84b9e5a7601a95909d.tar.bz2
STYLE: Remove references to std:: inside KWSys, even in comments. This will allow a commit check to be added.
Diffstat (limited to 'Source')
-rw-r--r--Source/kwsys/String.hxx.in4
-rw-r--r--Source/kwsys/SystemTools.hxx.in8
-rw-r--r--Source/kwsys/kwsys_ios_sstream.h.in2
3 files changed, 7 insertions, 7 deletions
diff --git a/Source/kwsys/String.hxx.in b/Source/kwsys/String.hxx.in
index 8afbb87..b032d47 100644
--- a/Source/kwsys/String.hxx.in
+++ b/Source/kwsys/String.hxx.in
@@ -22,8 +22,8 @@ namespace @KWSYS_NAMESPACE@
/** \class String
* \brief Short-name version of the STL basic_string class template.
*
- * The standard library "std::string" type is actually a typedef for
- * "std::basic_string<..long argument list..>". This string class is
+ * The standard library "string" type is actually a typedef for
+ * "basic_string<..long argument list..>". This string class is
* simply a subclass of this type with the same interface so that the
* name is shorter in debugging symbols and error messages.
*/
diff --git a/Source/kwsys/SystemTools.hxx.in b/Source/kwsys/SystemTools.hxx.in
index fa8c7ad..d7f11ca 100644
--- a/Source/kwsys/SystemTools.hxx.in
+++ b/Source/kwsys/SystemTools.hxx.in
@@ -27,12 +27,12 @@
// Required for va_list
#include <stdarg.h>
#if @KWSYS_NAMESPACE@_STL_HAVE_STD && !defined(va_list)
-// Some compilers move va_list into the std:: namespace and there is no way to
+// Some compilers move va_list into the std namespace and there is no way to
// tell that this has been done. Playing with things being included before or
// after stdarg.h does not solve things because we do not have control over
// what the user does. This hack solves this problem by moving va_list to our
// own namespace that is local for kwsys.
-namespace std {} // Required for platforms that do not have std::
+namespace std {} // Required for platforms that do not have std namespace
namespace @KWSYS_NAMESPACE@_VA_LIST
{
using namespace std;
@@ -834,12 +834,12 @@ public:
private:
/**
- * Allocate the std::map that serve as the Path Translation table.
+ * Allocate the stl map that serve as the Path Translation table.
*/
static void ClassInitialize();
/**
- * Deallocate the std::map that serve as the Path Translation table.
+ * Deallocate the stl map that serve as the Path Translation table.
*/
static void ClassFinalize();
diff --git a/Source/kwsys/kwsys_ios_sstream.h.in b/Source/kwsys/kwsys_ios_sstream.h.in
index 42e247e..ad20155 100644
--- a/Source/kwsys/kwsys_ios_sstream.h.in
+++ b/Source/kwsys/kwsys_ios_sstream.h.in
@@ -52,7 +52,7 @@
# pragma warning(pop)
# endif
-// Only have old std::strstream classes. Wrap them to look like new
+// Only have old std strstream classes. Wrap them to look like new
// ostringstream and istringstream classes.
# include <@KWSYS_NAMESPACE@/stl/string>