Skip to content

Commit

Permalink
use << operator in the definition of some flas
Browse files Browse the repository at this point in the history
  • Loading branch information
NotFound committed Sep 8, 2011
1 parent 517d063 commit 20bcd02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions winxedst1.winxed
Original file line number Diff line number Diff line change
Expand Up @@ -1042,9 +1042,9 @@ const int

// Var flags
const int
VAR_is_volatile = 1, // volatile qualifier
VAR_is_lexical = 2, // lexicalized local variable
VAR_is_extern = 4; // externaly defined constant, do not export
VAR_is_volatile = 1, // volatile qualifier
VAR_is_lexical = 1 << 1, // lexicalized local variable
VAR_is_extern = 1 << 2; // externaly defined constant, do not export

const string
NULL = 'null',
Expand Down

0 comments on commit 20bcd02

Please sign in to comment.