From ed6fb690121d0a433a37a29251de447c2f68c0f8 Mon Sep 17 00:00:00 2001 From: Michael Casadevall Date: Mon, 11 Jul 2016 18:54:03 -0500 Subject: [PATCH] Fix whitespace spacing Signed-off-by: Michael Casadevall --- library/include/Error.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/library/include/Error.h b/library/include/Error.h index 1c8afe44c..6b4781028 100644 --- a/library/include/Error.h +++ b/library/include/Error.h @@ -38,19 +38,19 @@ namespace DFHack * our wrapper for the C++ exception. used to differentiate * the whole array of DFHack exceptions from the rest */ -#ifdef _MSC_VER +#ifdef _MSC_VER #pragma push /** - * C4275 is - The warning officially is non dll-interface class 'std::exception' used as base for - * dll-interface class + * C4275 is - The warning officially is non dll-interface class 'std::exception' used as base for + * dll-interface class * * Basically, its saying that you might have an ABI problem if you mismatch compilers. We don't * care since we build all of DFhack at once against whatever Toady is using */ -#pragma warning(disable: 4275) +#pragma warning(disable: 4275) #endif class DFHACK_EXPORT All : public std::exception{}; -#ifdef _MSC_VER +#ifdef _MSC_VER #pragma pop #endif class DFHACK_EXPORT NullPointer : public All {