add c++1y rightmost bit manipurations

This commit is contained in:
bolero-MURAKAMI 2014-03-31 17:18:22 +09:00
parent 56c9d52436
commit e244ea2932
21 changed files with 560 additions and 183 deletions

View file

@ -69,7 +69,7 @@ namespace sprout {
//
template<typename Head, typename... Tail>
inline SPROUT_CONSTEXPR Head&&
head_get(Head&& head, Tail&&... tail) {
head_get(Head&& head, Tail&&...) {
return SPROUT_FORWARD(Head, head);
}
} // namespace sprout