diff options
Diffstat (limited to 'gcc/d/dmd/globals.d')
-rw-r--r-- | gcc/d/dmd/globals.d | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/d/dmd/globals.d b/gcc/d/dmd/globals.d index 4a637b5..132683e 100644 --- a/gcc/d/dmd/globals.d +++ b/gcc/d/dmd/globals.d @@ -62,6 +62,7 @@ enum CppStdRevision : uint cpp14 = 2014_02, cpp17 = 2017_03, cpp20 = 2020_02, + cpp23 = 2023_02, } /// Trivalent boolean to represent the state of a `revert`able change @@ -159,6 +160,7 @@ extern (C++) struct ImportPathInfo { extern (C++) struct Param { bool obj = true; // write object file + bool readStdin; // saw "-" on command line, read source file from stdin bool multiobj; // break one object file into multiple ones bool trace; // insert profiling hooks bool tracegc; // instrument calls to 'new' |