diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-02-06 14:05:57 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-08 13:05:29 -0500 |
commit | 310ef08fed57b1c60ea8dc8ed98520e2cb0bff4e (patch) | |
tree | 89b17e537dd73551de0c5c225b18a6bfbee2ed8b /Source/cmSourceGroup.cxx | |
parent | 24e8b929eef74098d4ddf4581619322e0f4b5108 (diff) | |
download | cmake-310ef08fed57b1c60ea8dc8ed98520e2cb0bff4e.tar.gz |
stringapi: Use strings for source names
Diffstat (limited to 'Source/cmSourceGroup.cxx')
-rw-r--r-- | Source/cmSourceGroup.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSourceGroup.cxx b/Source/cmSourceGroup.cxx index d272b6cd00..195feb5ffc 100644 --- a/Source/cmSourceGroup.cxx +++ b/Source/cmSourceGroup.cxx @@ -73,7 +73,7 @@ void cmSourceGroup::SetGroupRegex(const char* regex) } //---------------------------------------------------------------------------- -void cmSourceGroup::AddGroupFile(const char* name) +void cmSourceGroup::AddGroupFile(const std::string& name) { this->GroupFiles.insert(name); } |