mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
fix config for C++14
This commit is contained in:
parent
3d89eae1e9
commit
d0d2b677bc
20 changed files with 41 additions and 14 deletions
|
@ -353,7 +353,7 @@ namespace sprout {
|
|||
}
|
||||
template<typename InputIterator>
|
||||
SPROUT_CXX14_CONSTEXPR void process_block_impl(InputIterator first, InputIterator last) {
|
||||
for(; first != last; ++first) {
|
||||
for (; first != last; ++first) {
|
||||
process_byte(*first);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -433,7 +433,7 @@ namespace sprout {
|
|||
}
|
||||
template<typename InputIterator>
|
||||
SPROUT_CXX14_CONSTEXPR void process_block_impl(InputIterator first, InputIterator last) {
|
||||
for(; first != last; ++first) {
|
||||
for (; first != last; ++first) {
|
||||
process_byte(*first);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue