From 7bb7cbe192817f6f5594d3498cb08ef4a655fa79 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Tue, 30 May 2017 21:33:19 +0200 Subject: compat/powerset: add missing includes --- compat/powerset.hpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'compat') diff --git a/compat/powerset.hpp b/compat/powerset.hpp index b23eecdc..ad7b07b0 100644 --- a/compat/powerset.hpp +++ b/compat/powerset.hpp @@ -1,5 +1,14 @@ #pragma once +#include +#include +#include +#include +#include + +#include +#include + template struct powerset final { @@ -55,8 +64,7 @@ private: }; template -static auto -make_powerset(const t& arg, const xs&... args) +auto make_powerset(const t& arg, const xs&... args) { using cnt = std::integral_constant; using p = powerset; -- cgit v1.2.3