mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-10-13 06:44:15 +02:00
fix indent
This commit is contained in:
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) {
|
||||
|
Reference in New Issue
Block a user