add sprout/range/adaptor/deep_copied.hpp

fix sprout/range/adaptor/sized.hpp
This commit is contained in:
bolero-MURAKAMI 2012-06-16 15:35:10 +09:00
commit 955561e36c
10 changed files with 178 additions and 15 deletions

View file

@ -6,6 +6,7 @@
#include <bitset>
#include <iostream>
#include <sprout/container.hpp>
#include <testspr/typeinfo.hpp>
namespace testspr {
//
@ -37,6 +38,14 @@ namespace testspr {
testspr::print_ln(std::bitset<sizeof(T) * 8>(t).template to_string<char>());
}
//
// print_typename
//
template<typename T>
void print_typename() {
testspr::print_ln(testspr::typename_of<T>());
}
//
// print_hl
//