summaryrefslogtreecommitdiffhomepage
path: root/qxt-mini/powerset.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'qxt-mini/powerset.hpp')
-rw-r--r--qxt-mini/powerset.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/qxt-mini/powerset.hpp b/qxt-mini/powerset.hpp
index ebb02ba8..901ff0c7 100644
--- a/qxt-mini/powerset.hpp
+++ b/qxt-mini/powerset.hpp
@@ -1,7 +1,5 @@
#pragma once
-#include "compat/macros.hpp"
-
#include <type_traits>
#include <cinttypes>
#include <vector>
@@ -66,8 +64,7 @@ private:
};
template<typename t, typename... xs>
-auto force_inline
-make_powerset(const t& arg, const xs&... args)
+inline auto 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>;