Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/ctfe.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ class ClassReferenceExp : public Expression
StructLiteralExp *value;
ClassReferenceExp(Loc loc, StructLiteralExp *lit, Type *type);
ClassDeclaration *originalClass();
VarDeclaration *getFieldAt(unsigned index);

/// Return index of the field, or -1 if not found
int getFieldIndex(Type *fieldtype, unsigned fieldoffset);
Expand Down
1 change: 1 addition & 0 deletions src/dscope.d
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ struct Scope
int explicitProtection; // set if in an explicit protection attribute

StorageClass stc; // storage class

DeprecatedDeclaration depdecl; // customized deprecation message

uint flags;
Expand Down
3 changes: 2 additions & 1 deletion src/scope.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ struct Scope
int explicitProtection; // set if in an explicit protection attribute

StorageClass stc; // storage class
char *depmsg; // customized deprecation message

DeprecatedDeclaration *depdecl; // customized deprecation message

unsigned flags;

Expand Down