diff options
author | Brad King <brad.king@kitware.com> | 2016-05-06 14:30:06 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-05-09 09:41:43 -0400 |
commit | 0ac18d40c8c29a17f1acfcaca506f41a26185901 (patch) | |
tree | 88b5d3c4b8c587d7979231d0e6ce9b03b0685a74 /Source/cmCallVisualStudioMacro.cxx | |
parent | d95fbdb70944a8f9a7e6ac11bc51f410a99aafcd (diff) | |
download | cmake-0ac18d40c8c29a17f1acfcaca506f41a26185901.tar.gz |
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/cmCallVisualStudioMacro.cxx')
-rw-r--r-- | Source/cmCallVisualStudioMacro.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmCallVisualStudioMacro.cxx b/Source/cmCallVisualStudioMacro.cxx index 636a827373..9cc5a693c7 100644 --- a/Source/cmCallVisualStudioMacro.cxx +++ b/Source/cmCallVisualStudioMacro.cxx @@ -30,7 +30,6 @@ static bool LogErrorsAsMessages; #include <comdef.h> -//---------------------------------------------------------------------------- // Copied from a correct comdef.h to avoid problems with deficient versions // of comdef.h that exist in the wild... Fixes issue #7533. // @@ -49,7 +48,6 @@ static bool LogErrorsAsMessages; #endif -//---------------------------------------------------------------------------- ///! Use ReportHRESULT to make a cmSystemTools::Message after calling ///! a COM method that may have failed. #define ReportHRESULT(hr, context) \ @@ -68,7 +66,6 @@ static bool LogErrorsAsMessages; } -//---------------------------------------------------------------------------- ///! Using the given instance of Visual Studio, call the named macro HRESULT InstanceCallMacro( IDispatch* vsIDE, @@ -161,7 +158,6 @@ HRESULT InstanceCallMacro( } -//---------------------------------------------------------------------------- ///! Get the Solution object from the IDE object HRESULT GetSolutionObject( IDispatch* vsIDE, @@ -211,7 +207,6 @@ HRESULT GetSolutionObject( } -//---------------------------------------------------------------------------- ///! Get the FullName property from the Solution object HRESULT GetSolutionFullName( IDispatch* vsSolution, @@ -261,7 +256,6 @@ HRESULT GetSolutionFullName( } -//---------------------------------------------------------------------------- ///! Get the FullName property from the Solution object, given the IDE object HRESULT GetIDESolutionFullName( IDispatch* vsIDE, @@ -281,7 +275,6 @@ HRESULT GetIDESolutionFullName( } -//---------------------------------------------------------------------------- ///! Get all running objects from the Windows running object table. ///! Save them in a map by their display names. HRESULT GetRunningInstances(std::map<std::string, IUnknownPtr>& mrot) @@ -347,7 +340,6 @@ HRESULT GetRunningInstances(std::map<std::string, IUnknownPtr>& mrot) } -//---------------------------------------------------------------------------- ///! Do the two file names refer to the same Visual Studio solution? Or are ///! we perhaps looking for any and all solutions? bool FilesSameSolution( @@ -370,7 +362,6 @@ bool FilesSameSolution( } -//---------------------------------------------------------------------------- ///! Find instances of Visual Studio with the given solution file ///! open. Pass "ALL" for slnFile to gather all running instances ///! of Visual Studio. @@ -421,7 +412,6 @@ HRESULT FindVisualStudioInstances( #endif //defined(HAVE_COMDEF_H) -//---------------------------------------------------------------------------- int cmCallVisualStudioMacro::GetNumberOfRunningVisualStudioInstances( const std::string& slnFile) { @@ -457,7 +447,6 @@ int cmCallVisualStudioMacro::GetNumberOfRunningVisualStudioInstances( } -//---------------------------------------------------------------------------- ///! Get all running objects from the Windows running object table. ///! Save them in a map by their display names. int cmCallVisualStudioMacro::CallMacro( |