diff options
author | lloyd <[email protected]> | 2013-12-10 03:59:31 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-12-10 03:59:31 +0000 |
commit | 0a2d555238f5c20ecc02b5bbbc48d2a5fd069f3f (patch) | |
tree | ea374cfff5db311d6051b4b84dd5b971cc7d1d6f /src/utils | |
parent | 748d7fd4b622ee3c9d95343e02ed945c217507f7 (diff) |
Make SIMD_Scalar a template
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/assert.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utils/assert.h b/src/utils/assert.h index 9265be450..f62fae63e 100644 --- a/src/utils/assert.h +++ b/src/utils/assert.h @@ -73,6 +73,11 @@ void BOTAN_DLL assertion_failure(const char* expr_str, __LINE__); \ } while(0) +/** +* Mark variable as unused +*/ +#define BOTAN_UNUSED(v) static_cast<void>(v) + } #endif |