From ca93b4a1ac9d07ea150572801fd47f9a0818abff Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Fri, 18 Oct 2013 14:16:53 -0400 Subject: Clean up some stuff, including a few spots where exceptions were not being handled correctly. --- node/SysEnv.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'node/SysEnv.cpp') diff --git a/node/SysEnv.cpp b/node/SysEnv.cpp index 150b26a8..3fb2c872 100644 --- a/node/SysEnv.cpp +++ b/node/SysEnv.cpp @@ -74,7 +74,6 @@ SysEnv::~SysEnv() #ifdef __APPLE__ uint64_t SysEnv::getNetworkConfigurationFingerprint() - throw() { int mib[6]; size_t needed; @@ -141,7 +140,6 @@ uint64_t SysEnv::getNetworkConfigurationFingerprint() #if defined(__linux__) || defined(linux) || defined(__LINUX__) || defined(__linux) uint64_t SysEnv::getNetworkConfigurationFingerprint() - throw() { char buf[16384]; uint64_t fingerprint = 5381; // djb2 hash algorithm is used below @@ -218,7 +216,6 @@ uint64_t SysEnv::getNetworkConfigurationFingerprint() #ifdef __WINDOWS__ uint64_t SysEnv::getNetworkConfigurationFingerprint() - throw() { // TODO: windows version return 1; -- cgit v1.2.3