From c26696eb404888cec525bf3ee2e538ae8532156f Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sat, 6 Jun 2015 09:45:50 +0200 Subject: [PATCH] cmSourceFile: Re-arrange data. Size goes from 304 to 296 bytes. --- Source/cmSourceFile.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmSourceFile.h b/Source/cmSourceFile.h index f8982600f..1433b54f0 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 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 Depends; static const std::string propLANGUAGE; };