From 48428c18142e5c726f2dc5f92b0759fd3c7df890 Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Mon, 10 Dec 2018 12:11:55 +0000 Subject: [PATCH] libphobos: Fix modify immutable error on Solaris. Backported from upstream druntime 2.079. Reviewed-on: https://github.com/dlang/druntime/pull/2089 From-SVN: r266950 --- libphobos/libdruntime/core/thread.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libphobos/libdruntime/core/thread.d b/libphobos/libdruntime/core/thread.d index ff15d066a49..98a81425f47 100644 --- a/libphobos/libdruntime/core/thread.d +++ b/libphobos/libdruntime/core/thread.d @@ -1547,7 +1547,7 @@ private: version (Solaris) { - __gshared immutable bool m_isRTClass; + __gshared bool m_isRTClass; } private: -- 2.30.2