add <cstring> and <cwchar> compatible constexpr functions

This commit is contained in:
bolero-MURAKAMI 2014-04-23 01:27:03 +09:00
parent fe255a5e74
commit b04dea6002
26 changed files with 526 additions and 103 deletions

View file

@ -19,7 +19,7 @@ namespace sprout {
// ifft
//
template<typename RandomAccessRange>
inline SPROUT_CONSTEXPR void
inline SPROUT_CXX14_CONSTEXPR void
ifft(RandomAccessRange&& rng) {
sprout::ifft(sprout::begin(SPROUT_FORWARD(RandomAccessRange, rng)), sprout::end(SPROUT_FORWARD(RandomAccessRange, rng)));
}