Skip to content

Commit 4bc88d7

Browse files
committed
fix indent
1 parent f09713e commit 4bc88d7

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,8 @@ Makefile
4949
/test/streaming_c
5050
/test/version
5151
/test/zone
52+
53+
build
54+
*-build
55+
.cache
56+
compile_commands.json

include/msgpack/v1/adaptor/cpp11/chrono.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ template <
3434
bool target_is_signed = std::is_signed<Target>::value,
3535
bool source_is_signed = std::is_signed<Source>::value,
3636
typename = typename std::enable_if<
37-
std::is_integral<Target>::value &&
38-
std::is_integral<Source>::value
37+
std::is_integral<Target>::value &&
38+
std::is_integral<Source>::value
3939
>::type
4040
>
4141
struct would_underflow {
@@ -114,8 +114,8 @@ template <
114114
typename Target,
115115
typename Source,
116116
typename = typename std::enable_if<
117-
std::is_integral<Target>::value &&
118-
std::is_integral<Source>::value
117+
std::is_integral<Target>::value &&
118+
std::is_integral<Source>::value
119119
>::type
120120
>
121121
Target integral_cast(Source source) {

0 commit comments

Comments
 (0)