diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-02-11 15:52:03 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-02-11 18:44:03 +0100 |
commit | aa3b01a556a60ce09123e93263642193da86982b (patch) | |
tree | 37c89d7e9350c2cb2d8fc48792966af790df0e29 /proto-ft | |
parent | 1f17378532c24e2442b9fff8ccb5ea0b0936a2c0 (diff) |
compat/macros: remove prefix
Let's not be concerned about global namespace pollution. These
identifiers aren't exposed in the api/ directory.
Diffstat (limited to 'proto-ft')
-rw-r--r-- | proto-ft/ftnoir_protocol_ft.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto-ft/ftnoir_protocol_ft.cpp b/proto-ft/ftnoir_protocol_ft.cpp index 874f83da..46879475 100644 --- a/proto-ft/ftnoir_protocol_ft.cpp +++ b/proto-ft/ftnoir_protocol_ft.cpp @@ -23,7 +23,7 @@ freetrack::~freetrack() static_assert(sizeof(LONG) == sizeof(std::int32_t)); static_assert(sizeof(LONG) == 4u); -cc_noinline void store(float volatile& place, const float value) +never_inline void store(float volatile& place, const float value) { union { |