summaryrefslogtreecommitdiffstats
path: root/Source/cmProcessTools.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-07 08:09:47 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-07 08:24:28 (GMT)
commit40844a1487ea576987ecec148f77bbeebea9433d (patch)
tree03673e5a2dfb4b3c12d5f5fe20b328ea7a25a2c1 /Source/cmProcessTools.h
parentb1ff32afc67799d08130d457347290a41e426ed0 (diff)
downloadCMake-40844a1487ea576987ecec148f77bbeebea9433d.zip
CMake-40844a1487ea576987ecec148f77bbeebea9433d.tar.gz
CMake-40844a1487ea576987ecec148f77bbeebea9433d.tar.bz2
cmProcessTools: Re-arrange data layout.
Size goes from 72 to 64 bytes.
Diffstat (limited to 'Source/cmProcessTools.h')
-rw-r--r--Source/cmProcessTools.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmProcessTools.h b/Source/cmProcessTools.h
index 439726d..23833ca 100644
--- a/Source/cmProcessTools.h
+++ b/Source/cmProcessTools.h
@@ -51,12 +51,12 @@ public:
/** Configure logging of lines as they are extracted. */
void SetLog(std::ostream* log, const char* prefix);
protected:
- char Separator;
- bool IgnoreCR;
std::ostream* Log;
const char* Prefix;
- char LineEnd;
std::string Line;
+ char Separator;
+ char LineEnd;
+ bool IgnoreCR;
virtual bool ProcessChunk(const char* data, int length);
/** Implement in a subclass to process one line of input. It