@@ -100,14 +100,13 @@ namespace F4SE
100100 requires (
101101 const K& a_transparent,
102102 const typename C::key_type& a_key,
103- typename C::key_compare& a_compare)
104- {
105- typename C::key_compare::is_transparent;
106- // clang-format off
103+ typename C::key_compare& a_compare) {
104+ typename C::key_compare::is_transparent;
105+ // clang-format off
107106 { a_compare (a_transparent, a_key) } -> std::convertible_to<bool >;
108107 { a_compare (a_key, a_transparent) } -> std::convertible_to<bool >;
109- // clang-format on
110- };
108+ // clang-format on
109+ };
111110
112111 namespace nttp
113112 {
@@ -147,9 +146,9 @@ namespace F4SE
147146 string (const CharT (&)[N]) -> string<CharT, N - 1>;
148147 }
149148
150- template <class EF > //
151- requires (std::invocable<std::remove_reference_t <EF>>) //
152- class scope_exit
149+ template <class EF > //
150+ requires (std::invocable<std::remove_reference_t <EF>>) //
151+ class scope_exit
153152 {
154153 public:
155154 // 1)
@@ -257,7 +256,7 @@ namespace F4SE
257256 counted_function_iterator operator ++(int ) noexcept
258257 {
259258 counted_function_iterator tmp{ *this };
260- operator ++();
259+ operator ++();
261260 return tmp;
262261 }
263262
@@ -285,9 +284,9 @@ namespace F4SE
285284
286285 template <class ... Args>
287286 enumeration (Args...) -> enumeration<
288- std::common_type_t<Args...>,
289- std::underlying_type_t<
290- std::common_type_t<Args...>>>;
287+ std::common_type_t<Args...>,
288+ std::underlying_type_t<
289+ std::common_type_t<Args...>>>;
291290 }
292291}
293292
0 commit comments