From 09c548ec69478ee0fa1b1d017481c78d58662280 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Wed, 21 Jun 2017 21:50:05 +0100 Subject: [PATCH] Remove unused errinfo types --- libdevcore/Assertions.h | 2 -- libdevcore/Exceptions.h | 4 ---- 2 files changed, 6 deletions(-) diff --git a/libdevcore/Assertions.h b/libdevcore/Assertions.h index 0151cfc1b..729ffb05d 100644 --- a/libdevcore/Assertions.h +++ b/libdevcore/Assertions.h @@ -54,6 +54,4 @@ namespace dev } \ while (false) -using errinfo_comment = boost::error_info; - } diff --git a/libdevcore/Exceptions.h b/libdevcore/Exceptions.h index 37cdbed96..4817e9e3e 100644 --- a/libdevcore/Exceptions.h +++ b/libdevcore/Exceptions.h @@ -56,9 +56,5 @@ DEV_SIMPLE_EXCEPTION(FileError); // error information to be added to exceptions using errinfo_invalidSymbol = boost::error_info; using errinfo_comment = boost::error_info; -using errinfo_required = boost::error_info; -using errinfo_got = boost::error_info; -using errinfo_required_h256 = boost::error_info; -using errinfo_got_h256 = boost::error_info; }