erase old code

This commit is contained in:
bolero-MURAKAMI 2013-06-27 00:38:14 +09:00
parent e0ccfedaaa
commit a786a7ccb1
3 changed files with 5 additions and 9 deletions

View file

@ -2,7 +2,6 @@
#define SPROUT_LIBS_CSTRING_TEST_MEMCHR_CPP
#include <sprout/cstring/memchr.hpp>
#include <sprout/iterator.hpp>
#include <testspr/tools.hpp>
namespace testspr {
@ -15,7 +14,6 @@ namespace testspr {
{
SPROUT_STATIC_CONSTEXPR auto found = sprout::memchr(buf, b, 12);
TESTSPR_BOTH_ASSERT(buf + 8 == found);
// TESTSPR_BOTH_ASSERT(sprout::distance(buf, reinterpret_cast<unsigned char const*>(found)) == 8);
}
}
}