mirror of
https://github.com/monero-project/monero.git
synced 2025-06-19 03:19:15 -04:00
Merge pull request #846
de030d9
fix: error: -Werror=misleading-indentation (moneroexample)c2d7300
contrib: epee: add exception spec to throwing destructors (redfish)6898741
src: p2p: add exception spec to throwing destructors (redfish)21dbc95
crypto: slow-hash: fix misleading indent (redfish)70f3634
crypto: slow-hash: remove unused hash list for ARM (redfish)1a7772f
crypto: oaes_lib: remove unused _NR array (redfish)6462a3a
crypto: fix compile error: use named type in sizeof (redfish)
This commit is contained in:
commit
ba61f37f9c
11 changed files with 16 additions and 21 deletions
src/p2p
|
@ -167,7 +167,7 @@ connection_basic::connection_basic(boost::asio::io_service& io_service, std::ato
|
|||
//boost::filesystem::create_directories("log/dr-monero/net/");
|
||||
}
|
||||
|
||||
connection_basic::~connection_basic() {
|
||||
connection_basic::~connection_basic() noexcept(false) {
|
||||
string remote_addr_str = "?";
|
||||
m_ref_sock_count--;
|
||||
try { boost::system::error_code e; remote_addr_str = socket_.remote_endpoint(e).address().to_string(); } catch(...){} ;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue