aboutsummaryrefslogtreecommitdiff
path: root/libphobos
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gcc.gnu.org>2018-12-10 12:11:55 +0000
committerIain Buclaw <ibuclaw@gcc.gnu.org>2018-12-10 12:11:55 +0000
commit48428c18142e5c726f2dc5f92b0759fd3c7df890 (patch)
tree081159996b70eb615ec35dbd2adecdb47a957358 /libphobos
parent418d97a2b33bd1ae69265261cef680668e07e25e (diff)
downloadgcc-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
Diffstat (limited to 'libphobos')
-rw-r--r--libphobos/libdruntime/core/thread.d2
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: