diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-06-03 18:55:20 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-06-03 18:55:20 (GMT) |
commit | 0b3b21fa63ed137a3fa534c379b2995583c40e24 (patch) | |
tree | 61705c05b2650de91dadbb6a67cc93574ef71d5c /Source/cmSourceGroup.cxx | |
parent | 12d99416c194f3c8d1f2f321213506514d0616c8 (diff) | |
download | CMake-0b3b21fa63ed137a3fa534c379b2995583c40e24.zip CMake-0b3b21fa63ed137a3fa534c379b2995583c40e24.tar.gz CMake-0b3b21fa63ed137a3fa534c379b2995583c40e24.tar.bz2 |
warning fixes
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 8815e30..706547d 100644 --- a/Source/cmSourceGroup.cxx +++ b/Source/cmSourceGroup.cxx @@ -50,7 +50,7 @@ bool cmSourceGroup::Matches(const char* name) /** * Add a source to the group that the compiler will know how to build. */ -void cmSourceGroup::AddSource(const char* name, const cmSourceFile* sf) +void cmSourceGroup::AddSource(const char* /* name */, const cmSourceFile* sf) { m_SourceFiles.push_back(sf); } |