diff options
| author | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2015-10-30 17:11:51 +0100 | 
|---|---|---|
| committer | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2015-10-30 17:11:51 +0100 | 
| commit | 2a5c236ddcf3aeda110c005b4c57b608e6a771fa (patch) | |
| tree | 5e84783e4287873b0ea85a8fedc3984e251a734f /UnityCore | |
| parent | 65040afb73c4bf39e2ca688f7f502537e0ea16c6 (diff) | |
Scope: add proper defintion using bit shifting
(bzr r4027.1.9)
Diffstat (limited to 'UnityCore')
| -rw-r--r-- | UnityCore/Scope.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/UnityCore/Scope.h b/UnityCore/Scope.h index 7c06c285b..3be56a4c8 100644 --- a/UnityCore/Scope.h +++ b/UnityCore/Scope.h @@ -36,7 +36,7 @@ namespace dash  typedef enum  {  G_SCOPE_ERROR_NO_ACTIVATION_HANDLER = (1 << 0), - G_SCOPE_ERROR_INVALID_PREVIEW = (2 << 0) + G_SCOPE_ERROR_INVALID_PREVIEW = (1 << 1)  } GScopeError;  GQuark | 
