diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-06-22 13:21:52 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-06-26 23:01:53 +0200 |
commit | 519b4a3ae10c96951db917f2439982c7d2391874 (patch) | |
tree | ec55d8a12fa740803e6da2074eec04f465e98ede /qxt-mini/powerset.hpp | |
parent | 0f182b791622ad4491c8aabf8edce21a63839bdc (diff) |
compat/macros: rename portability macros
use `cc_xx' rather than awkward synonyms.
Diffstat (limited to 'qxt-mini/powerset.hpp')
-rw-r--r-- | qxt-mini/powerset.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qxt-mini/powerset.hpp b/qxt-mini/powerset.hpp index ebb02ba8..7847548e 100644 --- a/qxt-mini/powerset.hpp +++ b/qxt-mini/powerset.hpp @@ -66,8 +66,8 @@ private: }; template<typename t, typename... xs> -auto force_inline -make_powerset(const t& arg, const xs&... args) +auto +cc_forceinline make_powerset(const t& arg, const xs&... args) { using cnt = std::integral_constant<std::uintptr_t, sizeof...(xs)+1>; using p = powerset<t, cnt::value>; |