diff options
author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2006-03-17 17:06:41 (GMT) |
---|---|---|
committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2006-03-17 17:06:41 (GMT) |
commit | e9fcafafe52d01cc3b89190b3787bebd807198f0 (patch) | |
tree | fc258cf2774def39138c6fbde9780cef1cad4cb4 /Source/kwsys/SystemTools.hxx.in | |
parent | d5631f370b2355b69e5895734d8fe7e4c090e8cf (diff) | |
download | CMake-e9fcafafe52d01cc3b89190b3787bebd807198f0.zip CMake-e9fcafafe52d01cc3b89190b3787bebd807198f0.tar.gz CMake-e9fcafafe52d01cc3b89190b3787bebd807198f0.tar.bz2 |
ENH: Use const char where it should have been. At same time fix Bug#2958
Diffstat (limited to 'Source/kwsys/SystemTools.hxx.in')
-rw-r--r-- | Source/kwsys/SystemTools.hxx.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/SystemTools.hxx.in b/Source/kwsys/SystemTools.hxx.in index a833b59..f0afa36 100644 --- a/Source/kwsys/SystemTools.hxx.in +++ b/Source/kwsys/SystemTools.hxx.in @@ -32,7 +32,7 @@ // 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 @KWSYS_NAMESPACE@_VA_LIST { using namespace std; |