CMake: Fix inconsistent copy ctor/operator=

Detected by GCC9.

Looks like inCMakeCache was left out by mistake in df62701801.

Change-Id: I231d0d3e102edb95b657aef42c3f2f2f834514a0
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Orgad Shaneh
2019-05-06 23:57:41 +03:00
committed by Orgad Shaneh
parent afa4b3eeb0
commit 7a5d8f4aab
4 changed files with 2 additions and 7 deletions

View File

@@ -44,6 +44,7 @@ public:
BuildDirParameters();
BuildDirParameters(CMakeBuildConfiguration *bc);
BuildDirParameters(const BuildDirParameters &other);
BuildDirParameters &operator=(const BuildDirParameters &other);
bool isValid() const;
CMakeTool *cmakeTool() const;