summaryrefslogtreecommitdiff
path: root/gcc/d/dmd/root/complex.d
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/d/dmd/root/complex.d')
-rw-r--r--gcc/d/dmd/root/complex.d4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/d/dmd/root/complex.d b/gcc/d/dmd/root/complex.d
index d9a396d9677..a7a74381ef9 100644
--- a/gcc/d/dmd/root/complex.d
+++ b/gcc/d/dmd/root/complex.d
@@ -13,11 +13,15 @@ module dmd.root.complex;
import dmd.root.ctfloat;
+nothrow:
+
extern (C++) struct complex_t
{
real_t re;
real_t im;
+ nothrow:
+
this() @disable;
this(real_t re)