diff options
author | Adrian Kummerlaender | 2015-02-15 14:07:50 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2015-02-15 14:07:50 +0100 |
commit | 46e174935b122c0da4b51532a7f683a512eeaf65 (patch) | |
tree | 88bed0d869ce40c460e6370b4954ff159fe3c575 /src/runtime | |
parent | e24f25ada7e8f48dc35cb235e045a4324bccb4f2 (diff) | |
download | TypeAsValue-46e174935b122c0da4b51532a7f683a512eeaf65.tar TypeAsValue-46e174935b122c0da4b51532a7f683a512eeaf65.tar.gz TypeAsValue-46e174935b122c0da4b51532a7f683a512eeaf65.tar.bz2 TypeAsValue-46e174935b122c0da4b51532a7f683a512eeaf65.tar.lz TypeAsValue-46e174935b122c0da4b51532a7f683a512eeaf65.tar.xz TypeAsValue-46e174935b122c0da4b51532a7f683a512eeaf65.tar.zst TypeAsValue-46e174935b122c0da4b51532a7f683a512eeaf65.zip |
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
Diffstat (limited to 'src/runtime')
-rw-r--r-- | src/runtime/list/for_each.h | 2 |
1 files changed, 2 insertions, 0 deletions
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_ |