mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-04-16 06:56:39 +02:00
fix indent
This commit is contained in:
parent
f09713e838
commit
4bc88d7f6f
5
.gitignore
vendored
5
.gitignore
vendored
@ -49,3 +49,8 @@ Makefile
|
||||
/test/streaming_c
|
||||
/test/version
|
||||
/test/zone
|
||||
|
||||
build
|
||||
*-build
|
||||
.cache
|
||||
compile_commands.json
|
||||
|
@ -34,8 +34,8 @@ template <
|
||||
bool target_is_signed = std::is_signed<Target>::value,
|
||||
bool source_is_signed = std::is_signed<Source>::value,
|
||||
typename = typename std::enable_if<
|
||||
std::is_integral<Target>::value &&
|
||||
std::is_integral<Source>::value
|
||||
std::is_integral<Target>::value &&
|
||||
std::is_integral<Source>::value
|
||||
>::type
|
||||
>
|
||||
struct would_underflow {
|
||||
@ -114,8 +114,8 @@ template <
|
||||
typename Target,
|
||||
typename Source,
|
||||
typename = typename std::enable_if<
|
||||
std::is_integral<Target>::value &&
|
||||
std::is_integral<Source>::value
|
||||
std::is_integral<Target>::value &&
|
||||
std::is_integral<Source>::value
|
||||
>::type
|
||||
>
|
||||
Target integral_cast(Source source) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user