diff options
author | Bartosz Kosiorek <bartosz.kosiorek@tomtom.com> | 2019-03-04 09:21:26 (GMT) |
---|---|---|
committer | Bartosz Kosiorek <bartosz.kosiorek@tomtom.com> | 2019-03-04 09:44:14 (GMT) |
commit | fdeb364a84f99fd1d1f34a929d02a86653ea364f (patch) | |
tree | d881f240214f7c081ed6ad8e324431098d63846b /Source/cmGlobalGenerator.h | |
parent | b3955a08ab1af0e2f4dc8b42b2b387e474bc01db (diff) | |
download | CMake-fdeb364a84f99fd1d1f34a929d02a86653ea364f.zip CMake-fdeb364a84f99fd1d1f34a929d02a86653ea364f.tar.gz CMake-fdeb364a84f99fd1d1f34a929d02a86653ea364f.tar.bz2 |
cmGlobalGenerator: Change case of methods from GeneratedMakeCommand struct
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index ac01326..d69c311 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -56,20 +56,20 @@ struct GeneratedMakeCommand { // Add each argument as a separate element to the vector template <typename... T> - void add(T&&... args) + void Add(T&&... args) { // iterate the args and append each one AppendStrs(PrimaryCommand, std::forward<T>(args)...); } // Add each value in the iterators as a separate element to the vector - void add(std::vector<std::string>::const_iterator start, + void Add(std::vector<std::string>::const_iterator start, std::vector<std::string>::const_iterator end) { PrimaryCommand.insert(PrimaryCommand.end(), start, end); } - std::string printable() const + std::string Printable() const { std::size_t size = PrimaryCommand.size(); for (auto&& i : PrimaryCommand) { |