Skip to content

Commit 2cba281

Browse files
committed
fix spaces to be tabs.
My IDE Clion was inserting spaces and the code is formatted using tabs. So I updated my IDE's settings and fixed the lines I touched so they had tabs. I did see other lines with spaces but a majority are tabbed.
1 parent ba296c7 commit 2cba281

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/ctre/return_type.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ template <size_t Id, typename Name = void> struct captured_content {
9797
} else {
9898
return static_cast<size_t>(std::distance(begin(), end()));
9999
}
100-
#else
101-
return static_cast<size_t>(std::distance(begin(), end()));
100+
#else
101+
return static_cast<size_t>(std::distance(begin(), end()));
102102
#endif
103103
}
104104

@@ -128,8 +128,8 @@ template <size_t Id, typename Name = void> struct captured_content {
128128
return std::basic_string<char_type>(begin(), end());
129129
}
130130
#else
131-
return std::basic_string<char_type>(begin(), end());
132-
#endif
131+
return std::basic_string<char_type>(begin(), end());
132+
#endif
133133
}
134134

135135
constexpr CTRE_FORCE_INLINE auto view() const noexcept {

0 commit comments

Comments
 (0)