1
0

Replaced MSVC-specific decorators with our universal ones.

This commit is contained in:
madmaxoft 2014-04-24 22:43:20 +02:00
parent 616fb15508
commit 4f49c978cf
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ public:
bool IsValid(void) const { return m_IsValid; }
/** Returns the internal context ptr. Only use in PolarSSL API calls. */
__declspec(deprecated) ctr_drbg_context * Get(void) { return &m_CtrDrbg; }
OBSOLETE ctr_drbg_context * Get(void) { return &m_CtrDrbg; }
protected:
/** The entropy source used for generating the random */

View File

@ -26,7 +26,7 @@ public:
int Parse(const void * a_CertContents, size_t a_Size);
/** Returns the internal cert ptr. Only use in PolarSSL API calls. */
__declspec(deprecated) x509_crt * Get(void) { return &m_Cert; }
OBSOLETE x509_crt * Get(void) { return &m_Cert; }
protected:
x509_crt m_Cert;