From 2596bf1b389beade2d08bd6860dcbd3b82cbe0aa Mon Sep 17 00:00:00 2001 From: Martin Kinkelin Date: Sat, 1 Jun 2024 12:32:13 +0200 Subject: [PATCH] Fix missing new CastExp field in C++ header --- compiler/src/dmd/expression.h | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/src/dmd/expression.h b/compiler/src/dmd/expression.h index 1ff6c4c863..ad792817c1 100644 --- a/compiler/src/dmd/expression.h +++ b/compiler/src/dmd/expression.h @@ -889,6 +889,7 @@ public: // Possible to cast to one type while painting to another type Type *to; // type to cast to unsigned char mod; // MODxxxxx + d_bool trusted; // assume cast is safe CastExp *syntaxCopy() override; bool isLvalue() override;