Remove unused "no-postdims" flag.

This commit is contained in:
David Anderson
2014-07-04 16:41:38 -07:00
parent 7e770908fb
commit 58b9fd57b2
2 changed files with 3 additions and 12 deletions
+1 -2
View File
@@ -262,8 +262,7 @@ typedef struct svalue_s {
#define DECLFLAG_ARGUMENT 0x02 // The declaration is for an argument.
#define DECLFLAG_VARIABLE 0x04 // The declaration is for a variable.
#define DECLFLAG_ENUMROOT 0x08 // Multi-dimensional arrays should have an enumroot.
#define DECLFLAG_NO_POSTDIMS 0x10 // Do not parse post-fix dimensions.
#define DECLFLAG_MAYBE_FUNCTION 0x20 // Might be a named function.
#define DECLFLAG_MAYBE_FUNCTION 0x10 // Might be a named function.
#define DECLMASK_NAMED_DECL (DECLFLAG_ARGUMENT | DECLFLAG_VARIABLE | DECLFLAG_MAYBE_FUNCTION)
typedef struct {