summaryrefslogtreecommitdiff
path: root/Source/cmSourceGroup.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-11-15 10:32:01 -0500
committerBrad King <brad.king@kitware.com>2017-11-15 10:47:07 -0500
commitc871446abc9f9f33bd302ed059037d719eb9e2d9 (patch)
tree7189bca12aad188ed10b739f1c98607891bf7266 /Source/cmSourceGroup.h
parent1fe9e49bad0ad4f540ceda028106d9af89084946 (diff)
downloadcmake-c871446abc9f9f33bd302ed059037d719eb9e2d9.tar.gz
cmSourceGroup: Return strings from GetName and GetFullName
Diffstat (limited to 'Source/cmSourceGroup.h')
-rw-r--r--Source/cmSourceGroup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmSourceGroup.h b/Source/cmSourceGroup.h
index e8bd697678..7c7c35fb88 100644
--- a/Source/cmSourceGroup.h
+++ b/Source/cmSourceGroup.h
@@ -55,12 +55,12 @@ public:
/**
* Get the name of this group.
*/
- const char* GetName() const;
+ std::string const& GetName() const;
/**
* Get the full path name for group.
*/
- const char* GetFullName() const;
+ std::string const& GetFullName() const;
/**
* Check if the given name matches this group's regex.