docblocks

This commit is contained in:
Raoul Wols 2021-07-13 12:32:17 +02:00
parent faa491ce65
commit df78574034
No known key found for this signature in database
GPG Key ID: 9FFE06A0F6AAA2DF
2 changed files with 0 additions and 2 deletions

View File

@ -42,7 +42,6 @@ int sslerrorprintercallback(const char *str, size_t len, void *ctx)
/** /**
* Constructor * Constructor
* @param retval return value of SSL_get_error (must be a proper error) * @param retval return value of SSL_get_error (must be a proper error)
* @throw std::bad_alloc if the BIO couldn't be allocated
*/ */
SslErrorPrinter::SslErrorPrinter(int retval) SslErrorPrinter::SslErrorPrinter(int retval)
{ {

View File

@ -34,7 +34,6 @@ public:
/** /**
* Constructor * Constructor
* @param retval return value of SSL_get_error (must be a proper error) * @param retval return value of SSL_get_error (must be a proper error)
* @throw std::bad_alloc if the BIO couldn't be allocated
*/ */
SslErrorPrinter(int retval); SslErrorPrinter(int retval);