From c2815d649813686d644c261c724b8cd074649922 Mon Sep 17 00:00:00 2001 From: skilion Date: Mon, 29 May 2017 01:14:22 +0200 Subject: [PATCH] fix indentation --- src/onedrive.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/onedrive.d b/src/onedrive.d index 3f601fcf..07a2d14a 100644 --- a/src/onedrive.d +++ b/src/onedrive.d @@ -21,10 +21,10 @@ class OneDriveException: Exception // https://dev.onedrive.com/misc/errors.htm JSONValue error; - @nogc @safe pure nothrow this(string msg, Throwable next, string file = __FILE__, size_t line = __LINE__) - { - super(msg, file, line, next); - } + @nogc @safe pure nothrow this(string msg, Throwable next, string file = __FILE__, size_t line = __LINE__) + { + super(msg, file, line, next); + } @safe pure this(int httpStatusCode, string reason, string file = __FILE__, size_t line = __LINE__) {