diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-06-06 07:45:50 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-07 07:32:24 (GMT) |
commit | c26696eb404888cec525bf3ee2e538ae8532156f (patch) | |
tree | 42277de98758943ce3f94007145498afba5090d8 /Source/cmSourceFile.h | |
parent | 41fef23b9b8bfa795e2d61e27b12f055ef9bbc39 (diff) | |
download | CMake-c26696eb404888cec525bf3ee2e538ae8532156f.zip CMake-c26696eb404888cec525bf3ee2e538ae8532156f.tar.gz CMake-c26696eb404888cec525bf3ee2e538ae8532156f.tar.bz2 |
cmSourceFile: Re-arrange data.
Size goes from 304 to 296 bytes.
Diffstat (limited to 'Source/cmSourceFile.h')
-rw-r--r-- | Source/cmSourceFile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmSourceFile.h b/Source/cmSourceFile.h index f898260..1433b54 100644 --- a/Source/cmSourceFile.h +++ b/Source/cmSourceFile.h @@ -107,8 +107,9 @@ private: std::string Extension; std::string Language; std::string FullPath; - bool FindFullPathFailed; std::string ObjectLibrary; + std::vector<std::string> Depends; + bool FindFullPathFailed; bool IsUiFile; bool FindFullPath(std::string* error); @@ -116,7 +117,6 @@ private: void CheckExtension(); void CheckLanguage(std::string const& ext); - std::vector<std::string> Depends; static const std::string propLANGUAGE; }; |