aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/aes/workarounds.h
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2019-12-21 13:33:50 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2019-12-21 13:33:50 +0300
commit351c5188013fff041c7217aed64478cfc7643480 (patch)
treec918b5093ac45394439f3dff30da37b809173603 /include/aes/workarounds.h
parentcmake: install libraries & their headers (diff)
downloadaes-tools-351c5188013fff041c7217aed64478cfc7643480.tar.gz
aes-tools-351c5188013fff041c7217aed64478cfc7643480.zip
restructure the project
Diffstat (limited to 'include/aes/workarounds.h')
-rw-r--r--include/aes/workarounds.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/aes/workarounds.h b/include/aes/workarounds.h
deleted file mode 100644
index 914bd21..0000000
--- a/include/aes/workarounds.h
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
-// This file is part of the "AES tools" project.
-// For details, see https://github.com/egor-tensin/aes-tools.
-// Distributed under the MIT License.
-
-#pragma once
-
-#if defined(_MSC_VER)
-#define AES_ALIGN(t, x) __declspec(align(x)) t
-#elif defined(__GNUC__) || defined(__MINGW32__)
-#define AES_ALIGN(t, x) t __attribute__((aligned(x)))
-#else
-#warning "couldn't determine alignment attribute"
-#endif
-
-#define AES_UNUSED_PARAMETER(...) (void) (__VA_ARGS__)