SCI: Made vocab_version static again (a global static var is bad, but a really global var is worse); also clarified some FIXME comments that we want to avoid *any* non-const global var, no matter whether it is static or not
svn-id: r41045
This commit is contained in:
parent
539094d5a8
commit
70a04c8b51
7 changed files with 10 additions and 10 deletions
|
@ -237,7 +237,7 @@ enum Movecnt {
|
|||
UNINITIALIZED
|
||||
};
|
||||
|
||||
static Movecnt handle_movecnt = UNINITIALIZED; // FIXME: Avoid static vars
|
||||
static Movecnt handle_movecnt = UNINITIALIZED; // FIXME: Avoid non-cpnst global vars
|
||||
|
||||
/**
|
||||
* Address parameters may be passed in one of three forms:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue