aboutsummaryrefslogtreecommitdiff
path: root/gcc/d/dmd/dsymbol.h
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2023-06-23 17:48:26 +0200
committerIain Buclaw <ibuclaw@gdcproject.org>2023-06-26 00:14:01 +0200
commit55620c7bd31705fe024eb6b6ab517981b57a9296 (patch)
tree6642bc8bf2df8c397f772f816d85c0015e8085de /gcc/d/dmd/dsymbol.h
parent9326a49c9e9d6316bc960505a55da2dd06bc10af (diff)
downloadgcc-55620c7bd31705fe024eb6b6ab517981b57a9296.zip
gcc-55620c7bd31705fe024eb6b6ab517981b57a9296.tar.gz
gcc-55620c7bd31705fe024eb6b6ab517981b57a9296.tar.bz2
d: Merge upstream dmd, druntime a45f4e9f43, phobos 106038f2e.
D front-end changes: - Import dmd v2.103.1. - Deprecated invalid special token sequences inside token strings. D runtime changes: - Import druntime v2.103.1. Phobos changes: - Import phobos v2.103.1. gcc/d/ChangeLog: * dmd/MERGE: Merge upstream dmd a45f4e9f43. * dmd/VERSION: Bump version to v2.103.1. libphobos/ChangeLog: * libdruntime/MERGE: Merge upstream druntime a45f4e9f43. * src/MERGE: Merge upstream phobos 106038f2e.
Diffstat (limited to 'gcc/d/dmd/dsymbol.h')
-rw-r--r--gcc/d/dmd/dsymbol.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/d/dmd/dsymbol.h b/gcc/d/dmd/dsymbol.h
index 1cee456..039a288 100644
--- a/gcc/d/dmd/dsymbol.h
+++ b/gcc/d/dmd/dsymbol.h
@@ -172,7 +172,7 @@ struct FieldState
unsigned fieldAlign;
unsigned bitOffset;
- bool inFlight;
+ d_bool inFlight;
};
struct DsymbolAttributes;
@@ -189,7 +189,7 @@ public:
private:
DsymbolAttributes* atts;
public:
- bool errors; // this symbol failed to pass semantic()
+ d_bool errors; // this symbol failed to pass semantic()
PASS semanticRun;
unsigned short localNum; // perturb mangled name to avoid collisions with those in FuncDeclaration.localsymtab
static Dsymbol *create(Identifier *);