diff options
author | Brad King <brad.king@kitware.com> | 2013-01-08 13:42:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-01-08 13:42:58 (GMT) |
commit | 6f6afbd69f6ff30ec545ac8bea2ffd99d8cd48fc (patch) | |
tree | 00852b14697e747154c79003c49ab759e8e3b085 /Source/kwsys/SystemTools.hxx.in | |
parent | c7550d5ef12d8185fad93d581ebd52474ae3d1b0 (diff) | |
parent | 495fa24d70ce4c5b594e15cae464af243a127fb8 (diff) | |
download | CMake-6f6afbd69f6ff30ec545ac8bea2ffd99d8cd48fc.zip CMake-6f6afbd69f6ff30ec545ac8bea2ffd99d8cd48fc.tar.gz CMake-6f6afbd69f6ff30ec545ac8bea2ffd99d8cd48fc.tar.bz2 |
Merge branch 'upstream-kwsys' into update-kwsys
Diffstat (limited to 'Source/kwsys/SystemTools.hxx.in')
-rw-r--r-- | Source/kwsys/SystemTools.hxx.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/kwsys/SystemTools.hxx.in b/Source/kwsys/SystemTools.hxx.in index 5171125..9c56e96 100644 --- a/Source/kwsys/SystemTools.hxx.in +++ b/Source/kwsys/SystemTools.hxx.in @@ -91,8 +91,13 @@ public: * then an underscore is prepended. Note that this can produce * identifiers that the standard reserves (_[A-Z].* and __.*). */ - static kwsys_stl::string MakeCindentifier(const char* s); - + static kwsys_stl::string MakeCidentifier(const char* s); + + static kwsys_stl::string MakeCindentifier(const char* s) + { + return MakeCidentifier(s); + } + /** * Replace replace all occurences of the string in the source string. */ |