diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-17 07:11:34 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-17 07:11:34 +0300 |
commit | bbe68505981c448c7b81e1ad98fc038ef19d0c17 (patch) | |
tree | ad589e44a12c232ba71d435e1c17c9e984032864 /include | |
parent | CMakeLists.txt: code style (diff) | |
download | aes-tools-bbe68505981c448c7b81e1ad98fc038ef19d0c17.tar.gz aes-tools-bbe68505981c448c7b81e1ad98fc038ef19d0c17.zip |
fix compiler warnings
Diffstat (limited to 'include')
-rw-r--r-- | include/aes/workarounds.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/aes/workarounds.h b/include/aes/workarounds.h index 45fece2..914bd21 100644 --- a/include/aes/workarounds.h +++ b/include/aes/workarounds.h @@ -12,3 +12,5 @@ #else #warning "couldn't determine alignment attribute" #endif + +#define AES_UNUSED_PARAMETER(...) (void) (__VA_ARGS__) |