diff options
Diffstat (limited to 'Source/cmMathCommand.h')
-rw-r--r-- | Source/cmMathCommand.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmMathCommand.h b/Source/cmMathCommand.h index d62290428..27c5b6a3b 100644 --- a/Source/cmMathCommand.h +++ b/Source/cmMathCommand.h @@ -21,7 +21,7 @@ public: /** * This is a virtual constructor for the command. */ - virtual cmCommand* Clone() + virtual cmCommand* Clone() { return new cmMathCommand; } @@ -50,7 +50,7 @@ public: { return "Mathematical expressions."; } - + /** * More documentation. */ @@ -64,10 +64,10 @@ public: "+ - * / % | & ^ ~ << >> * / %. They have the same meaning " " as they do in c code."; } - + cmTypeMacro(cmMathCommand, cmCommand); protected: - + bool HandleExprCommand(std::vector<std::string> const& args); }; |