diff options
author | Brad King <brad.king@kitware.com> | 2016-05-06 18:30:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-05-09 13:41:43 (GMT) |
commit | 0ac18d40c8c29a17f1acfcaca506f41a26185901 (patch) | |
tree | 88b5d3c4b8c587d7979231d0e6ce9b03b0685a74 /Source/cmStringCommand.cxx | |
parent | d95fbdb70944a8f9a7e6ac11bc51f410a99aafcd (diff) | |
download | CMake-0ac18d40c8c29a17f1acfcaca506f41a26185901.zip CMake-0ac18d40c8c29a17f1acfcaca506f41a26185901.tar.gz CMake-0ac18d40c8c29a17f1acfcaca506f41a26185901.tar.bz2 |
Remove `//------...` horizontal separator comments
Modern editors provide plenty of ways to visually separate functions.
Drop the explicit comments that previously served this purpose.
Use the following command to automate the change:
$ git ls-files -z -- \
"*.c" "*.cc" "*.cpp" "*.cxx" "*.h" "*.hh" "*.hpp" "*.hxx" |
egrep -z -v "^Source/cmCommandArgumentLexer\." |
egrep -z -v "^Source/cmCommandArgumentParser(\.y|\.cxx|Tokens\.h)" |
egrep -z -v "^Source/cmDependsJavaLexer\." |
egrep -z -v "^Source/cmDependsJavaParser(\.y|\.cxx|Tokens\.h)" |
egrep -z -v "^Source/cmExprLexer\." |
egrep -z -v "^Source/cmExprParser(\.y|\.cxx|Tokens\.h)" |
egrep -z -v "^Source/cmFortranLexer\." |
egrep -z -v "^Source/cmFortranParser(\.y|\.cxx|Tokens\.h)" |
egrep -z -v "^Source/cmListFileLexer\." |
egrep -z -v "^Source/cm_sha2" |
egrep -z -v "^Source/(kwsys|CursesDialog/form)/" |
egrep -z -v "^Utilities/(KW|cm).*/" |
xargs -0 sed -i '/^\(\/\/---*\|\/\*---*\*\/\)$/ {d;}'
This avoids modifying third-party sources and generated sources.
Diffstat (limited to 'Source/cmStringCommand.cxx')
-rw-r--r-- | Source/cmStringCommand.cxx | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/Source/cmStringCommand.cxx b/Source/cmStringCommand.cxx index e10e1ae..757425f 100644 --- a/Source/cmStringCommand.cxx +++ b/Source/cmStringCommand.cxx @@ -23,7 +23,6 @@ #include <cmTimestamp.h> #include <cmUuid.h> -//---------------------------------------------------------------------------- bool cmStringCommand ::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &) { @@ -121,7 +120,6 @@ bool cmStringCommand return false; } -//---------------------------------------------------------------------------- bool cmStringCommand::HandleHashCommand(std::vector<std::string> const& args) { #if defined(CMAKE_BUILD_WITH_CMAKE) @@ -149,7 +147,6 @@ bool cmStringCommand::HandleHashCommand(std::vector<std::string> const& args) #endif } -//---------------------------------------------------------------------------- bool cmStringCommand::HandleToUpperLowerCommand( std::vector<std::string> const& args, bool toUpper) { @@ -176,7 +173,6 @@ bool cmStringCommand::HandleToUpperLowerCommand( return true; } -//---------------------------------------------------------------------------- bool cmStringCommand::HandleAsciiCommand(std::vector<std::string> const& args) { if ( args.size() < 3 ) @@ -208,7 +204,6 @@ bool cmStringCommand::HandleAsciiCommand(std::vector<std::string> const& args) return true; } -//---------------------------------------------------------------------------- bool cmStringCommand::HandleConfigureCommand( std::vector<std::string> const& args) { @@ -255,7 +250,6 @@ bool cmStringCommand::HandleConfigureCommand( return true; } -//---------------------------------------------------------------------------- bool cmStringCommand::HandleRegexCommand(std::vector<std::string> const& args) { if(args.size() < 2) @@ -300,7 +294,6 @@ bool cmStringCommand::HandleRegexCommand(std::vector<std::string> const& args) return false; } -//---------------------------------------------------------------------------- bool cmStringCommand::RegexMatch(std::vector<std::string> const& args) { //"STRING(REGEX MATCH <regular_expression> <output variable> @@ -345,7 +338,6 @@ bool cmStringCommand::RegexMatch(std::vector<std::string> const& args) return true; } -//---------------------------------------------------------------------------- bool cmStringCommand::RegexMatchAll(std::vector<std::string> const& args) { //"STRING(REGEX MATCHALL <regular_expression> <output variable> <input> @@ -396,7 +388,6 @@ bool cmStringCommand::RegexMatchAll(std::vector<std::string> const& args) return true; } -//---------------------------------------------------------------------------- bool cmStringCommand::RegexReplace(std::vector<std::string> const& args) { //"STRING(REGEX REPLACE <regular_expression> <replace_expression> @@ -533,7 +524,6 @@ bool cmStringCommand::RegexReplace(std::vector<std::string> const& args) return true; } -//---------------------------------------------------------------------------- bool cmStringCommand::HandleFindCommand(std::vector<std::string> const& args) { @@ -595,7 +585,6 @@ bool cmStringCommand::HandleFindCommand(std::vector<std::string> const& return true; } -//---------------------------------------------------------------------------- bool cmStringCommand::HandleCompareCommand(std::vector<std::string> const& args) { @@ -652,7 +641,6 @@ bool cmStringCommand::HandleCompareCommand(std::vector<std::string> const& return false; } -//---------------------------------------------------------------------------- bool cmStringCommand::HandleReplaceCommand(std::vector<std::string> const& args) { @@ -675,7 +663,6 @@ bool cmStringCommand::HandleReplaceCommand(std::vector<std::string> const& return true; } -//---------------------------------------------------------------------------- bool cmStringCommand::HandleSubstringCommand(std::vector<std::string> const& args) { @@ -713,7 +700,6 @@ bool cmStringCommand::HandleSubstringCommand(std::vector<std::string> const& return true; } -//---------------------------------------------------------------------------- bool cmStringCommand ::HandleLengthCommand(std::vector<std::string> const& args) { @@ -734,7 +720,6 @@ bool cmStringCommand return true; } -//---------------------------------------------------------------------------- bool cmStringCommand::HandleAppendCommand(std::vector<std::string> const& args) { if(args.size() < 2) @@ -762,7 +747,6 @@ bool cmStringCommand::HandleAppendCommand(std::vector<std::string> const& args) return true; } -//---------------------------------------------------------------------------- bool cmStringCommand ::HandleConcatCommand(std::vector<std::string> const& args) { @@ -779,7 +763,6 @@ bool cmStringCommand return true; } -//---------------------------------------------------------------------------- bool cmStringCommand ::HandleMakeCIdentifierCommand(std::vector<std::string> const& args) { @@ -797,7 +780,6 @@ bool cmStringCommand return true; } -//---------------------------------------------------------------------------- bool cmStringCommand ::HandleGenexStripCommand(std::vector<std::string> const& args) { @@ -818,7 +800,6 @@ bool cmStringCommand return true; } -//---------------------------------------------------------------------------- bool cmStringCommand::HandleStripCommand( std::vector<std::string> const& args) { @@ -867,7 +848,6 @@ bool cmStringCommand::HandleStripCommand( return true; } -//---------------------------------------------------------------------------- bool cmStringCommand ::HandleRandomCommand(std::vector<std::string> const& args) { @@ -950,7 +930,6 @@ bool cmStringCommand return true; } -//---------------------------------------------------------------------------- bool cmStringCommand ::HandleTimestampCommand(std::vector<std::string> const& args) { |