diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-18 09:34:44 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-18 17:09:51 (GMT) |
commit | 27ec21dbb2370ac71aebc0089d4269f27661f4b8 (patch) | |
tree | 8ca26489acdf5566ac8c91fa8d5d2d62dfc5e13a /Source/cmState.h | |
parent | e7fbd489e0da88e2fd70aa039da4f4173ee24028 (diff) | |
download | CMake-27ec21dbb2370ac71aebc0089d4269f27661f4b8.zip CMake-27ec21dbb2370ac71aebc0089d4269f27661f4b8.tar.gz CMake-27ec21dbb2370ac71aebc0089d4269f27661f4b8.tar.bz2 |
cmState: Forward-declare a type earlier.
Diffstat (limited to 'Source/cmState.h')
-rw-r--r-- | Source/cmState.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmState.h b/Source/cmState.h index 473a194..15a6192 100644 --- a/Source/cmState.h +++ b/Source/cmState.h @@ -23,6 +23,7 @@ class cmCommand; class cmState { struct SnapshotDataType; + struct BuildsystemDirectoryStateType; typedef cmLinkedTree<SnapshotDataType>::iterator PositionType; friend class Snapshot; public: @@ -203,7 +204,6 @@ private: cmPropertyMap GlobalProperties; cmake* CMakeInstance; - struct BuildsystemDirectoryStateType; cmLinkedTree<BuildsystemDirectoryStateType> BuildsystemDirectory; cmLinkedTree<std::string> ExecutionListFiles; |