From efcc05e615bcc3d55de8a9172a88270d0634b655 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 27 Jul 2015 12:45:22 -0400 Subject: [PATCH] Fixed compiler error "exception specification in declaration does not match previous declaration" under Clang --- trdlocal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trdlocal.h b/trdlocal.h index 92d244a0..cfc5a532 100644 --- a/trdlocal.h +++ b/trdlocal.h @@ -28,7 +28,7 @@ public: }; ThreadLocalStorage(); - ~ThreadLocalStorage(); + ~ThreadLocalStorage() CRYPTOPP_THROW; void SetValue(void *value); void *GetValue() const;