summaryrefslogtreecommitdiffstats
path: root/Source/cmStringCommand.h
diff options
context:
space:
mode:
authorMarc Chevrier <marc.chevrier@sap.com>2018-04-03 13:09:53 (GMT)
committerMarc Chevrier <marc.chevrier@sap.com>2018-04-16 13:04:14 (GMT)
commitcdae12f8f86730e075598118ebe5fd2f11746af7 (patch)
tree9e8dfbd6dffbdcb571126f78346af549e176ce48 /Source/cmStringCommand.h
parent912c2a6c7f4c0e0f478740254d063f4f9cd2c892 (diff)
downloadCMake-cdae12f8f86730e075598118ebe5fd2f11746af7.zip
CMake-cdae12f8f86730e075598118ebe5fd2f11746af7.tar.gz
CMake-cdae12f8f86730e075598118ebe5fd2f11746af7.tar.bz2
string() Refactoring: creates an helper for REGEX REPLACE
Diffstat (limited to 'Source/cmStringCommand.h')
-rw-r--r--Source/cmStringCommand.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/Source/cmStringCommand.h b/Source/cmStringCommand.h
index 569ed83..cbff73e 100644
--- a/Source/cmStringCommand.h
+++ b/Source/cmStringCommand.h
@@ -60,29 +60,6 @@ protected:
bool joinImpl(std::vector<std::string> const& args, std::string const& glue,
size_t varIdx);
-
- class RegexReplacement
- {
- public:
- RegexReplacement(const char* s)
- : number(-1)
- , value(s)
- {
- }
- RegexReplacement(const std::string& s)
- : number(-1)
- , value(s)
- {
- }
- RegexReplacement(int n)
- : number(n)
- , value()
- {
- }
- RegexReplacement() {}
- int number;
- std::string value;
- };
};
#endif