Cleanup WINSTD_NOVTABLE/__declspec(novtable)

This was originally intended as a compiler hint.

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
2021-11-19 15:48:06 +01:00
parent 71976a8a0b
commit 1f6716b279
3 changed files with 17 additions and 17 deletions

View File

@@ -79,8 +79,8 @@ namespace eap
class packable;
template<size_t N> struct WINSTD_NOVTABLE sanitizing_blob_f;
template<size_t N> struct WINSTD_NOVTABLE sanitizing_blob_zf;
template<size_t N> struct sanitizing_blob_f;
template<size_t N> struct sanitizing_blob_zf;
///
/// \defgroup EAPBaseSanitizing Sanitizing memory
@@ -653,7 +653,7 @@ namespace eap
///
/// Sanitizing BLOB of fixed size
///
template<size_t N> struct WINSTD_NOVTABLE sanitizing_blob_f
template<size_t N> struct sanitizing_blob_f
{
unsigned char data[N]; ///< BLOB data
@@ -807,7 +807,7 @@ namespace eap
///
/// Sanitizing BLOB of fixed size (zero initialized)
///
template<size_t N> struct WINSTD_NOVTABLE sanitizing_blob_zf : sanitizing_blob_f<N>
template<size_t N> struct sanitizing_blob_zf : sanitizing_blob_f<N>
{
///
/// Constructor