From aeb90205c744e45102de096edaf3a848de60c349 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sun, 8 May 2011 06:29:28 +0000 Subject: [PATCH] fixed typo in release assert support --- include/libtorrent/assert.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libtorrent/assert.hpp b/include/libtorrent/assert.hpp index 3caeb2d3a..df455e333 100644 --- a/include/libtorrent/assert.hpp +++ b/include/libtorrent/assert.hpp @@ -34,7 +34,7 @@ POSSIBILITY OF SUCH DAMAGE. #include "libtorrent/config.hpp" -#if (!defined TORRENT_DEBUG && !TORRENT_PRODUCTION_ASSERTS && TORRENT_RELEASE_ASSERTS) \ +#if (!defined TORRENT_DEBUG && !TORRENT_PRODUCTION_ASSERTS && !TORRENT_RELEASE_ASSERTS) \ || TORRENT_NO_ASSERTS #define TORRENT_ASSERT(a) do {} while(false) #define TORRENT_ASSERT_VAL(a, b) do {} while(false)