diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-01-21 14:16:43 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-01-22 14:16:40 (GMT) |
commit | fe8b0330ebb4b3347e130e8a556ec2a4edfada93 (patch) | |
tree | 1fb4274ebdc48abf7fa795a0b600fc446d8a15a6 /Source/cmSourceGroup.h | |
parent | e68a3eadfffbdbaa00b735330aac2190583d21c1 (diff) | |
download | CMake-fe8b0330ebb4b3347e130e8a556ec2a4edfada93.zip CMake-fe8b0330ebb4b3347e130e8a556ec2a4edfada93.tar.gz CMake-fe8b0330ebb4b3347e130e8a556ec2a4edfada93.tar.bz2 |
cmMakefile: Constify some cmSourceGroup related code.
Diffstat (limited to 'Source/cmSourceGroup.h')
-rw-r--r-- | Source/cmSourceGroup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSourceGroup.h b/Source/cmSourceGroup.h index 11a0c74..fd806da 100644 --- a/Source/cmSourceGroup.h +++ b/Source/cmSourceGroup.h @@ -56,7 +56,7 @@ public: /** * Looks up child and returns it */ - cmSourceGroup *lookupChild(const char *name); + cmSourceGroup *lookupChild(const char *name) const; /** * Get the name of this group. |