fix indentation

This commit is contained in:
skilion 2017-05-29 01:14:22 +02:00
parent ad5441ccdc
commit c2815d6498

View file

@ -21,10 +21,10 @@ class OneDriveException: Exception
// https://dev.onedrive.com/misc/errors.htm // https://dev.onedrive.com/misc/errors.htm
JSONValue error; JSONValue error;
@nogc @safe pure nothrow this(string msg, Throwable next, string file = __FILE__, size_t line = __LINE__) @nogc @safe pure nothrow this(string msg, Throwable next, string file = __FILE__, size_t line = __LINE__)
{ {
super(msg, file, line, next); super(msg, file, line, next);
} }
@safe pure this(int httpStatusCode, string reason, string file = __FILE__, size_t line = __LINE__) @safe pure this(int httpStatusCode, string reason, string file = __FILE__, size_t line = __LINE__)
{ {