Augment
Loading...
Searching...
No Matches
platform_compat.hpp
1
3
4#pragma once
5
6#if defined(_MSC_VER)
7 #define AUGTEST_EXPORT __declspec(dllexport)
8 #define AUGMENT_EXPORT __declspec(dllexport)
9 #define AUGMENT_NOINLINE __declspec(noinline)
10 #define AUGMENT_FORCEINLINE __forceinline
11#else
12 #define AUGTEST_EXPORT
13 #define AUGMENT_EXPORT __attribute__((visibility("default")))
14 #define AUGMENT_NOINLINE __attribute__((noinline))
15 #define AUGMENT_FORCEINLINE __attribute__((always_inline))
16#endif
17