add macro SPROUT_NON_CONSTEXPR

This commit is contained in:
bolero-MURAKAMI 2013-11-02 18:28:18 +09:00
commit 1132d08f23
37 changed files with 209 additions and 204 deletions

View file

@ -432,7 +432,7 @@ namespace sprout {
}
}
template<typename InputIterator>
void process_block_impl(InputIterator first, InputIterator last) {
SPROUT_CXX14_CONSTEXPR void process_block_impl(InputIterator first, InputIterator last) {
for(; first != last; ++first) {
process_byte(*first);
}