2
0
mirror of https://github.com/boostorg/hof.git synced 2026-02-01 08:32:12 +00:00

Add default constructor

This commit is contained in:
Paul Fultz II
2015-06-03 16:17:17 -07:00
parent 456b3c8ad4
commit defd42b22c

View File

@@ -16,6 +16,8 @@ namespace fit { namespace detail {
template<template<class...> class Adaptor>
struct make
{
constexpr make()
{}
template<class... Fs>
constexpr FIT_JOIN(Adaptor, Fs...) operator()(Fs... fs) const
{