From 46e174935b122c0da4b51532a7f683a512eeaf65 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sun, 15 Feb 2015 14:07:50 +0100 Subject: Moved class-based implementations into `detail` namespace * while class templates enable e.g. hiding implementation details they also require evaluation via `Eval` ** this clutters up the actual logic and is now hidden behind aliae that perform the evaluation --- src/pair.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pair.h') diff --git a/src/pair.h b/src/pair.h index 20bef4e..8234382 100644 --- a/src/pair.h +++ b/src/pair.h @@ -19,7 +19,7 @@ struct Pair : detail::pair_tag { }; template -using IsPair = std::is_base_of; +using IsPair = Eval>; } -- cgit v1.2.3