From d03b952c8af2db46f8676fe66d7dd78252c329b0 Mon Sep 17 00:00:00 2001 From: Denis Blank Date: Thu, 2 Jul 2015 00:16:50 +0200 Subject: [PATCH] remove public from struct inhertance --- include/Continuable.h | 6 +++--- include/functional_unwrap.hpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/Continuable.h b/include/Continuable.h index b4cc698..5d608d5 100644 --- a/include/Continuable.h +++ b/include/Continuable.h @@ -29,11 +29,11 @@ namespace detail /// Trait to identify continuable types template struct is_continuable - : public std::false_type { }; + : std::false_type { }; template struct is_continuable> - : public std::true_type { }; + : std::true_type { }; /// Creates an empty callback. template @@ -458,7 +458,7 @@ namespace detail template struct multiple_result_maker - : public multiple_result_maker< + : multiple_result_maker< Position + 1, typename concat_identities< Args, diff --git a/include/functional_unwrap.hpp b/include/functional_unwrap.hpp index 05da22f..ad0100a 100644 --- a/include/functional_unwrap.hpp +++ b/include/functional_unwrap.hpp @@ -51,7 +51,7 @@ namespace fu template struct sequence_generator - : public sequence_generator { }; + : sequence_generator { }; /// Sequence generator alias template