fix indent

This commit is contained in:
Uy Ha 2023-07-04 06:56:39 +00:00
parent f09713e838
commit 4bc88d7f6f
2 changed files with 9 additions and 4 deletions

5
.gitignore vendored
View File

@ -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

View File

@ -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) {