diff options
author | Brad King <brad.king@kitware.com> | 2017-06-14 20:31:07 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-06-14 20:31:20 (GMT) |
commit | 7b02cb299620ccce270d6c74454d04ee19dd2731 (patch) | |
tree | 09b949cc3d6dbac36813e23e87b3a3fd465cb5b7 /Source/cmCommonTargetGenerator.h | |
parent | c1f15e1c79251bc3fef4bae21020eb5f15437597 (diff) | |
download | CMake-7b02cb299620ccce270d6c74454d04ee19dd2731.zip CMake-7b02cb299620ccce270d6c74454d04ee19dd2731.tar.gz CMake-7b02cb299620ccce270d6c74454d04ee19dd2731.tar.bz2 |
cmCommonTargetGenerator: Rename member to avoid shadowing
Rename the `LocalGenerator` and `GlobalGenerator` members to avoid
shadowing similar members in subclasses that use more-specific pointer
types.
Diffstat (limited to 'Source/cmCommonTargetGenerator.h')
-rw-r--r-- | Source/cmCommonTargetGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCommonTargetGenerator.h b/Source/cmCommonTargetGenerator.h index c36145f..6b0f74e 100644 --- a/Source/cmCommonTargetGenerator.h +++ b/Source/cmCommonTargetGenerator.h @@ -37,8 +37,8 @@ protected: cmGeneratorTarget* GeneratorTarget; cmMakefile* Makefile; - cmLocalCommonGenerator* LocalGenerator; - cmGlobalCommonGenerator* GlobalGenerator; + cmLocalCommonGenerator* LocalCommonGenerator; + cmGlobalCommonGenerator* GlobalCommonGenerator; std::string ConfigName; void AppendFortranFormatFlags(std::string& flags, |