summaryrefslogtreecommitdiffstats
path: root/Source/cmSourceFile.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-04-01 14:43:39 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-04-01 14:43:48 (GMT)
commit6b5fb23e362d8e99e5fe78334d4bcec5e2ad8f29 (patch)
tree30a56e82ce9bd8cd3247918b5fb7a6046a33cbda /Source/cmSourceFile.h
parent249fb7f71d6ed5feaae0dfbfa48f9bf665b1f551 (diff)
parent735c6f39d9bed0ee291ce20368028ae682756095 (diff)
downloadCMake-6b5fb23e362d8e99e5fe78334d4bcec5e2ad8f29.zip
CMake-6b5fb23e362d8e99e5fe78334d4bcec5e2ad8f29.tar.gz
CMake-6b5fb23e362d8e99e5fe78334d4bcec5e2ad8f29.tar.bz2
Merge topic 'fix_doxygen_comments'
735c6f39d9 Fix invalid ///! doxygen comment line starts Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3170
Diffstat (limited to 'Source/cmSourceFile.h')
-rw-r--r--Source/cmSourceFile.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmSourceFile.h b/Source/cmSourceFile.h
index d579018..edad4c7 100644
--- a/Source/cmSourceFile.h
+++ b/Source/cmSourceFile.h
@@ -44,13 +44,13 @@ public:
cmCustomCommand const* GetCustomCommand() const;
void SetCustomCommand(cmCustomCommand* cc);
- ///! Set/Get a property of this source file
+ //! Set/Get a property of this source file
void SetProperty(const std::string& prop, const char* value);
void AppendProperty(const std::string& prop, const char* value,
bool asString = false);
- ///! Might return a nullptr if the property is not set or invalid
+ //! Might return a nullptr if the property is not set or invalid
const char* GetProperty(const std::string& prop) const;
- ///! Always returns a valid pointer
+ //! Always returns a valid pointer
const char* GetSafeProperty(const std::string& prop) const;
bool GetPropertyAsBool(const std::string& prop) const;
@@ -58,7 +58,7 @@ public:
command like get_property or get_source_file_property. */
const char* GetPropertyForUser(const std::string& prop);
- ///! Checks is the GENERATED property is set and true
+ //! Checks is the GENERATED property is set and true
/// @return Equivalent to GetPropertyAsBool("GENERATED")
bool GetIsGenerated() const { return this->IsGenerated; }