mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-04-23 16:52:45 +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/streaming_c
|
||||||
/test/version
|
/test/version
|
||||||
/test/zone
|
/test/zone
|
||||||
|
|
||||||
|
build
|
||||||
|
*-build
|
||||||
|
.cache
|
||||||
|
compile_commands.json
|
||||||
|
@ -34,8 +34,8 @@ template <
|
|||||||
bool target_is_signed = std::is_signed<Target>::value,
|
bool target_is_signed = std::is_signed<Target>::value,
|
||||||
bool source_is_signed = std::is_signed<Source>::value,
|
bool source_is_signed = std::is_signed<Source>::value,
|
||||||
typename = typename std::enable_if<
|
typename = typename std::enable_if<
|
||||||
std::is_integral<Target>::value &&
|
std::is_integral<Target>::value &&
|
||||||
std::is_integral<Source>::value
|
std::is_integral<Source>::value
|
||||||
>::type
|
>::type
|
||||||
>
|
>
|
||||||
struct would_underflow {
|
struct would_underflow {
|
||||||
@ -114,8 +114,8 @@ template <
|
|||||||
typename Target,
|
typename Target,
|
||||||
typename Source,
|
typename Source,
|
||||||
typename = typename std::enable_if<
|
typename = typename std::enable_if<
|
||||||
std::is_integral<Target>::value &&
|
std::is_integral<Target>::value &&
|
||||||
std::is_integral<Source>::value
|
std::is_integral<Source>::value
|
||||||
>::type
|
>::type
|
||||||
>
|
>
|
||||||
Target integral_cast(Source source) {
|
Target integral_cast(Source source) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user