aboutsummaryrefslogtreecommitdiffstats
path: root/libdevcore/Exceptions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libdevcore/Exceptions.cpp')
-rw-r--r--libdevcore/Exceptions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdevcore/Exceptions.cpp b/libdevcore/Exceptions.cpp
index 97f03f6e..cff5abf4 100644
--- a/libdevcore/Exceptions.cpp
+++ b/libdevcore/Exceptions.cpp
@@ -25,7 +25,7 @@ char const* Exception::what() const noexcept
// Return the comment if available.
if (string const* cmt = comment())
return cmt->data();
-
+
// Fallback to base what().
// Boost accepts nullptr, but the C++ standard doesn't
// and crashes on some platforms.