aboutsummaryrefslogtreecommitdiffstats
path: root/libdevcore/Exceptions.cpp
diff options
context:
space:
mode:
authorDaniel Kirchner <daniel@ekpyron.org>2018-09-03 21:01:15 +0800
committerDaniel Kirchner <daniel@ekpyron.org>2018-09-04 17:30:30 +0800
commita102f3b783dec236e9a733f5a5338efce3ef8319 (patch)
treeb4e6793dce0005920b5ba1ce46d538883057be8d /libdevcore/Exceptions.cpp
parent2783905babfbe2fd01ff5f7b2a2499bd13754f10 (diff)
downloaddexon-solidity-a102f3b783dec236e9a733f5a5338efce3ef8319.tar.gz
dexon-solidity-a102f3b783dec236e9a733f5a5338efce3ef8319.tar.zst
dexon-solidity-a102f3b783dec236e9a733f5a5338efce3ef8319.zip
Remove trailing whitespace for all files in the repository.
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.