From a1ecadbcda1e2fec1ed2994ec858b0655ce1d0b3 Mon Sep 17 00:00:00 2001 From: Maks Naumov Date: Tue, 10 Feb 2015 09:17:57 +0200 Subject: [PATCH] AcquireNoThrow(): return type must be HRESULT But all users of this function take result like "HRESULT". --- src/vm/threads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm/threads.h b/src/vm/threads.h index d4a41be..355051d 100644 --- a/src/vm/threads.h +++ b/src/vm/threads.h @@ -5555,7 +5555,7 @@ public: { } - BOOL AcquireNoThrow() + HRESULT AcquireNoThrow() { WRAPPER_NO_CONTRACT; -- 2.7.4