From 20e62aa959f922a408312a4ed8c365e9e976510d Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 17 Nov 2018 20:39:45 -0800 Subject: Avoid an explicit static_cast to bool --- OpenAL32/Include/alMain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenAL32/Include') diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 75cd0576..d06aeaf2 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -952,7 +952,7 @@ public: return *this; } - operator bool() const noexcept { return static_cast(mCtx); } + operator bool() const noexcept { return mCtx; } ALCcontext* operator->() noexcept { return mCtx; } ALCcontext* get() noexcept { return mCtx; } -- cgit v1.2.3