diff options
author | Brad King <brad.king@kitware.com> | 2007-05-17 21:40:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-05-17 21:40:59 (GMT) |
commit | 9a5b4eba97628c53f051d653cdc8a301f5f32312 (patch) | |
tree | 3fbf5ecc5ac2f0467e0b7bad1a43f4fe488e0540 /Source/cmVariableWatch.h | |
parent | b47807fc15a35c1f9f53842b17ec283c2d3a7778 (diff) | |
download | CMake-9a5b4eba97628c53f051d653cdc8a301f5f32312.zip CMake-9a5b4eba97628c53f051d653cdc8a301f5f32312.tar.gz CMake-9a5b4eba97628c53f051d653cdc8a301f5f32312.tar.bz2 |
BUG: All variable accesses should produce watch callbacks, including IF(DEFINED <var>) ones. Instead we define a new access type for IF(DEFINED) so that the error does not show up for backward compatibility variables.
Diffstat (limited to 'Source/cmVariableWatch.h')
-rw-r--r-- | Source/cmVariableWatch.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmVariableWatch.h b/Source/cmVariableWatch.h index 7f97c28..fc24d17 100644 --- a/Source/cmVariableWatch.h +++ b/Source/cmVariableWatch.h @@ -55,6 +55,7 @@ public: { VARIABLE_READ_ACCESS = 0, UNKNOWN_VARIABLE_READ_ACCESS, + UNKNOWN_VARIABLE_DEFINED_ACCESS, ALLOWED_UNKNOWN_VARIABLE_READ_ACCESS, VARIABLE_MODIFIED_ACCESS, VARIABLE_REMOVED_ACCESS, |