fix Issue 10254 - Purity correctness is broken with constructor

This commit is contained in:
k-hara 2013-06-06 23:04:42 +09:00
parent bf71d1e067
commit 92bef24f2f
6 changed files with 29 additions and 5 deletions

View file

@ -3357,6 +3357,7 @@ class CurlException : Exception
line = The line number where the exception occurred.
next = The previous exception in the chain of exceptions, if any.
+/
@safe pure nothrow
this(string msg,
string file = __FILE__,
size_t line = __LINE__,
@ -3378,6 +3379,7 @@ class CurlTimeoutException : CurlException
line = The line number where the exception occurred.
next = The previous exception in the chain of exceptions, if any.
+/
@safe pure nothrow
this(string msg,
string file = __FILE__,
size_t line = __LINE__,