mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 06:30:28 +03:00
fix Issue 10254 - Purity correctness is broken with constructor
This commit is contained in:
parent
bf71d1e067
commit
92bef24f2f
6 changed files with 29 additions and 5 deletions
|
@ -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__,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue