1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

rename type_traits is_int -> is_sint

add new type_traits is_*_unqualified
This commit is contained in:
bolero-MURAKAMI 2014-03-15 12:06:51 +09:00
parent 86db277625
commit 7e709630c6
12 changed files with 172 additions and 42 deletions

View file

@ -14,7 +14,7 @@
#include <sprout/limits.hpp>
#include <sprout/algorithm/clamp.hpp>
#include <sprout/utility/forward.hpp>
#include <sprout/type_traits/is_int.hpp>
#include <sprout/type_traits/is_sint.hpp>
#include <sprout/type_traits/is_uint.hpp>
#include <sprout/range/adaptor/transformed.hpp>
@ -26,7 +26,7 @@ namespace sprout {
template<typename IntType>
struct normalized_to_pcm_wave<
IntType,
typename std::enable_if<sprout::is_int<IntType>::value>::type
typename std::enable_if<sprout::is_sint<IntType>::value>::type
> {
public:
typedef IntType result_type;