diff options
author | Brad King <brad.king@kitware.com> | 2011-06-08 11:54:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-06-08 11:54:33 (GMT) |
commit | f09ba0f1a2dbae3bca99b35b7d8c26c457c5824c (patch) | |
tree | 2b82a07d634e28a17a75bcb47566cf3032e815c2 /Source/cmSourceGroupCommand.cxx | |
parent | eeeeca1082a8be5890a6d2096b505ebe584fc2b7 (diff) | |
download | CMake-f09ba0f1a2dbae3bca99b35b7d8c26c457c5824c.zip CMake-f09ba0f1a2dbae3bca99b35b7d8c26c457c5824c.tar.gz CMake-f09ba0f1a2dbae3bca99b35b7d8c26c457c5824c.tar.bz2 |
Fix style errors added by parent and grandparent
Diffstat (limited to 'Source/cmSourceGroupCommand.cxx')
-rw-r--r-- | Source/cmSourceGroupCommand.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmSourceGroupCommand.cxx b/Source/cmSourceGroupCommand.cxx index 22f4d47..8e61d0a 100644 --- a/Source/cmSourceGroupCommand.cxx +++ b/Source/cmSourceGroupCommand.cxx @@ -27,7 +27,8 @@ bool cmSourceGroupCommand delimiter = this->Makefile->GetDefinition("SOURCE_GROUP_DELIMITER"); } - std::vector<std::string> folders = cmSystemTools::tokenize(args[0], delimiter); + std::vector<std::string> folders = + cmSystemTools::tokenize(args[0], delimiter); cmSourceGroup* sg = 0; sg = this->Makefile->GetSourceGroup(folders); |