Skip to content

Commit

Permalink
enum Semantic -> Semantic
Browse files Browse the repository at this point in the history
  • Loading branch information
yebblies committed May 15, 2013
1 parent 8ff27d3 commit 3b13cb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/aggregate.h
Expand Up @@ -258,7 +258,7 @@ class ClassDeclaration : public AggregateDeclaration
int isscope; // !=0 if this is an auto class
int isabstract; // !=0 if abstract class
int inuse; // to prevent recursive attempts
enum Semantic doAncestorsSemantic; // Before searching symbol, whole ancestors should finish
Semantic doAncestorsSemantic; // Before searching symbol, whole ancestors should finish
// calling semantic() at least once, due to fill symtab
// and do addMember(). [== Semantic(Start,In,Done)]

Expand Down
2 changes: 1 addition & 1 deletion src/declaration.h
Expand Up @@ -129,7 +129,7 @@ class Declaration : public Dsymbol
enum LINK linkage;
int inuse; // used to detect cycles
const char *mangleOverride; // overridden symbol with pragma(mangle, "...")
enum Semantic sem;
Semantic sem;

Declaration(Identifier *id);
void semantic(Scope *sc);
Expand Down

0 comments on commit 3b13cb5

Please sign in to comment.