summaryrefslogtreecommitdiff
path: root/Source/cmLoadCacheCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmLoadCacheCommand.h')
-rw-r--r--Source/cmLoadCacheCommand.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/Source/cmLoadCacheCommand.h b/Source/cmLoadCacheCommand.h
index 04207d0dd0..67d93acc6f 100644
--- a/Source/cmLoadCacheCommand.h
+++ b/Source/cmLoadCacheCommand.h
@@ -25,26 +25,23 @@ public:
/**
* This is a virtual constructor for the command.
*/
- virtual cmCommand* Clone()
- {
- return new cmLoadCacheCommand;
- }
+ virtual cmCommand* Clone() { return new cmLoadCacheCommand; }
/**
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
virtual bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus &status);
+ cmExecutionStatus& status);
/**
* The name of the command as specified in CMakeList.txt.
*/
- virtual std::string GetName() const { return "load_cache";}
+ virtual std::string GetName() const { return "load_cache"; }
cmTypeMacro(cmLoadCacheCommand, cmCommand);
-protected:
+protected:
std::set<std::string> VariablesToRead;
std::string Prefix;
@@ -52,5 +49,4 @@ protected:
void CheckLine(const char* line);
};
-
#endif