X-Git-Url: https://git.llucax.com/software/druntime.git/blobdiff_plain/0b5d833e0947d44cd5bee6562c22ed4a14ca23bb..1f3a9af059166187064490d1cae80bd11fb8737c:/src/core/thread.d diff --git a/src/core/thread.d b/src/core/thread.d index 1a912d0..846f249 100644 --- a/src/core/thread.d +++ b/src/core/thread.d @@ -22,7 +22,7 @@ version = StackGrowsDown; */ class ThreadException : Exception { - this( char[] msg ) + this( string msg ) { super( msg ); } @@ -34,7 +34,7 @@ class ThreadException : Exception */ class FiberException : Exception { - this( char[] msg ) + this( string msg ) { super( msg ); }