mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-29 16:40:39 +08:00
Fix unused variable warning (issue #194)
This commit is contained in:
Vendored
+1
-1
@@ -626,7 +626,7 @@ namespace {
|
||||
#ifdef PHMAP_HAVE_EXCEPTIONS
|
||||
#define PHMAP_THROW_IMPL(e) throw e
|
||||
#else
|
||||
#define PHMAP_THROW_IMPL(e) std::abort()
|
||||
#define PHMAP_THROW_IMPL(e) do { (void)(e); std::abort(); } while(0)
|
||||
#endif
|
||||
} // namespace
|
||||
|
||||
|
||||
Reference in New Issue
Block a user