summaryrefslogtreecommitdiffstats
path: root/Source/cmCallVisualStudioMacro.h
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-03-31 09:27:12 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-03-31 09:27:12 (GMT)
commit735c6f39d9bed0ee291ce20368028ae682756095 (patch)
tree8f61ad282bc2dc848b4985001d1ac951690b615a /Source/cmCallVisualStudioMacro.h
parent11475cc5811e6d665cb41fcb1b7f68e6f1cb8af6 (diff)
downloadCMake-735c6f39d9bed0ee291ce20368028ae682756095.zip
CMake-735c6f39d9bed0ee291ce20368028ae682756095.tar.gz
CMake-735c6f39d9bed0ee291ce20368028ae682756095.tar.bz2
Fix invalid ///! doxygen comment line starts
In various places `///!` was used to start a comment line. This is not valid Doygen syntax. This patch replaces `///!` comment starts with `//!`.
Diffstat (limited to 'Source/cmCallVisualStudioMacro.h')
-rw-r--r--Source/cmCallVisualStudioMacro.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmCallVisualStudioMacro.h b/Source/cmCallVisualStudioMacro.h
index fdc9e66..9b5b3a8 100644
--- a/Source/cmCallVisualStudioMacro.h
+++ b/Source/cmCallVisualStudioMacro.h
@@ -16,16 +16,16 @@
class cmCallVisualStudioMacro
{
public:
- ///! Call the named macro in instances of Visual Studio with the
- ///! given solution file open. Pass "ALL" for slnFile to call the
- ///! macro in each Visual Studio instance.
+ //! Call the named macro in instances of Visual Studio with the
+ //! given solution file open. Pass "ALL" for slnFile to call the
+ //! macro in each Visual Studio instance.
static int CallMacro(const std::string& slnFile, const std::string& macro,
const std::string& args,
const bool logErrorsAsMessages);
- ///! Count the number of running instances of Visual Studio with the
- ///! given solution file open. Pass "ALL" for slnFile to count all
- ///! running Visual Studio instances.
+ //! Count the number of running instances of Visual Studio with the
+ //! given solution file open. Pass "ALL" for slnFile to count all
+ //! running Visual Studio instances.
static int GetNumberOfRunningVisualStudioInstances(
const std::string& slnFile);