Redundant global namespace prefix removed

This commit is contained in:
Simon Rozman 2016-03-18 12:17:49 +01:00
parent a2c8cfd710
commit f5c85d331a

View File

@ -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);
}