Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
uyha committed Jul 4, 2023
1 parent f09713e commit 4bc88d7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,8 @@ Makefile
/test/streaming_c
/test/version
/test/zone

build
*-build
.cache
compile_commands.json
8 changes: 4 additions & 4 deletions include/msgpack/v1/adaptor/cpp11/chrono.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit 4bc88d7

Please sign in to comment.