mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-12-23 21:25:49 +00:00
fix for clang3.4
This commit is contained in:
parent
2993b4d53e
commit
9c37deb7d7
1 changed files with 4 additions and 4 deletions
|
@ -697,11 +697,11 @@ namespace sprout {
|
|||
return *this;
|
||||
}
|
||||
|
||||
SPROUT_CXX14_CONSTEXPR word_type&
|
||||
SPROUT_CXX14_CONSTEXPR word_type
|
||||
getword(std::size_t, bool c = false) SPROUT_NOEXCEPT {
|
||||
typedef word_type* type;
|
||||
return !c ? *type()
|
||||
: throw std::out_of_range("base_bitset::getword"), *type()
|
||||
// typedef word_type* type;
|
||||
return !c ? 0
|
||||
: throw std::out_of_range("base_bitset::getword"), 0
|
||||
;
|
||||
}
|
||||
SPROUT_CONSTEXPR word_type
|
||||
|
|
Loading…
Reference in a new issue