Skip to content
Closed
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
2 changes: 1 addition & 1 deletion ddmd/dsymbol.h
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class Dsymbol : public RootObject
char *toChars();
virtual char *toPrettyCharsHelper(); // helper to print fully qualified (template) arguments
Loc& getLoc();
char *locToChars();
const char *locToChars();
bool equals(RootObject *o);
bool isAnonymous();
void error(Loc loc, const char *format, ...);
Expand Down
2 changes: 1 addition & 1 deletion ddmd/mtype.h
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ class TypeStruct : public Type
structalign_t alignment();
Expression *defaultInit(Loc loc);
Expression *defaultInitLiteral(Loc loc);
bool isZeroInit(Loc loc) const;
bool isZeroInit(Loc loc) /*const*/;
bool isAssignable();
bool isBoolean() const;
bool needsDestruction() const;
Expand Down