From f5c85d331aee71a8ee59470dd0baefe66d9e1045 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Fri, 18 Mar 2016 12:17:49 +0100 Subject: [PATCH] Redundant global namespace prefix removed --- include/wxex/crypto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wxex/crypto.h b/include/wxex/crypto.h index a4f1f12..e8f5a60 100644 --- a/include/wxex/crypto.h +++ b/include/wxex/crypto.h @@ -256,5 +256,5 @@ bool WXEXTEND_API wxCryptoVerifySignature(const wxCryptoHash &hash, const void * /// inline bool wxCryptoVerifySignature(const wxCryptoHash &hash, const wxMemoryBuffer &signature, const wxCryptoKey &key) { - return ::wxCryptoVerifySignature(hash, signature.GetData(), signature.GetDataLen(), key); + return wxCryptoVerifySignature(hash, signature.GetData(), signature.GetDataLen(), key); }