diff options
author | Iain Buclaw <ibuclaw@gcc.gnu.org> | 2018-12-10 12:11:55 +0000 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gcc.gnu.org> | 2018-12-10 12:11:55 +0000 |
commit | 48428c18142e5c726f2dc5f92b0759fd3c7df890 (patch) | |
tree | 081159996b70eb615ec35dbd2adecdb47a957358 | |
parent | 418d97a2b33bd1ae69265261cef680668e07e25e (diff) | |
download | gcc-48428c18142e5c726f2dc5f92b0759fd3c7df890.zip gcc-48428c18142e5c726f2dc5f92b0759fd3c7df890.tar.gz gcc-48428c18142e5c726f2dc5f92b0759fd3c7df890.tar.bz2 |
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
-rw-r--r-- | libphobos/libdruntime/core/thread.d | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libphobos/libdruntime/core/thread.d b/libphobos/libdruntime/core/thread.d index ff15d06..98a8142 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: |