summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2014-05-05 21:25:24 (GMT)
committerBrad King <brad.king@kitware.com>2014-05-22 14:36:49 (GMT)
commitd849800351a6ed91f3d6b149bb9e50aaa4c42a99 (patch)
tree0d5304b770ede7ac3b76189c663edb0bdf252fec /Source/cmMakefile.cxx
parent96e9eb1766261605ebc97009d6ace20214eaa9a4 (diff)
downloadCMake-d849800351a6ed91f3d6b149bb9e50aaa4c42a99.zip
CMake-d849800351a6ed91f3d6b149bb9e50aaa4c42a99.tar.gz
CMake-d849800351a6ed91f3d6b149bb9e50aaa4c42a99.tar.bz2
variable_watch: Remove undocumented and redundant access type
The ALLOWED_UNKNOWN_VARIABLE_READ_ACCESS access type was switched on an undocumented variable and its lookup caused an unnecessary performance impact. Remove it.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx13
1 files changed, 1 insertions, 12 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 90a7b0b..9b7290b 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -2472,19 +2472,8 @@ const char* cmMakefile::GetDefinition(const std::string& name) const
}
else
{
- // are unknown access allowed
- const char* allow = this->Internal->VarStack.top()
- .Get("CMAKE_ALLOW_UNKNOWN_VARIABLE_READ_ACCESS");
- if(cmSystemTools::IsOn(allow))
- {
- vv->VariableAccessed(name,
- cmVariableWatch::ALLOWED_UNKNOWN_VARIABLE_READ_ACCESS, def, this);
- }
- else
- {
- vv->VariableAccessed(name,
+ vv->VariableAccessed(name,
cmVariableWatch::UNKNOWN_VARIABLE_READ_ACCESS, def, this);
- }
}
}
#endif