From eeb0c6476e7a881dc9c03e82f06860039af49942 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Tue, 14 Oct 2014 13:00:45 +0300 Subject: [PATCH] Minor fix. --- libdevcore/Common.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/libdevcore/Common.cpp b/libdevcore/Common.cpp index a59bc2739..335e2b387 100644 --- a/libdevcore/Common.cpp +++ b/libdevcore/Common.cpp @@ -29,18 +29,5 @@ namespace dev char const* Version = "0.7.4"; -inline bool assertAux(bool _a, char const* _aStr, unsigned _line, char const* _file, char const* _func) -{ - bool ret = _a; - if (!ret) - { - std::cerr << "Assertion failed:" << _aStr << " [func=" << _func << ", line=" << _line << ", file=" << _file << "]" << std::endl; -#if ETH_DEBUG - debug_break(); -#endif - } - return !ret; -} - }