Skip to content

Commit 6e5029a

Browse files
author
Sahil Sinha
committed
Fix indentation to match existing code style
1 parent f8853db commit 6e5029a

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

test/scan.h

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -248,19 +248,19 @@ template <typename Context> struct custom_scan_arg {
248248
private:
249249
using scan_type = detail::scan_type;
250250
scan_type type_;
251-
union {
252-
int* int_value_;
253-
unsigned* uint_value_;
254-
long long* long_long_value_;
255-
unsigned long long* ulong_long_value_;
256-
double* double_value_;
257-
float* float_value_;
258-
std::string* string_;
259-
string_view* string_view_;
260-
detail::custom_scan_arg<Context> custom_;
261-
// TODO: more types
262-
};
263-
251+
union {
252+
int* int_value_;
253+
unsigned* uint_value_;
254+
long long* long_long_value_;
255+
unsigned long long* ulong_long_value_;
256+
double* double_value_;
257+
float* float_value_;
258+
std::string* string_;
259+
string_view* string_view_;
260+
detail::custom_scan_arg<Context> custom_;
261+
// TODO: more types
262+
};
263+
264264
template <typename T>
265265
static void scan_custom_arg(void* arg, scan_parse_context& parse_ctx,
266266
Context& ctx) {

0 commit comments

Comments
 (0)