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/runtime/list/for_each.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/runtime/list/for_each.h') diff --git a/src/runtime/list/for_each.h b/src/runtime/list/for_each.h index b7496a8..a7dc2a8 100644 --- a/src/runtime/list/for_each.h +++ b/src/runtime/list/for_each.h @@ -7,6 +7,7 @@ #include "list/list.h" namespace tav { + namespace runtime { template < @@ -28,6 +29,7 @@ void for_each(const Function& function) { } } + } #endif // TYPEASVALUE_SRC_RUNTIME_LIST_FOR_EACH_H_ -- cgit v1.2.3