File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -360,9 +360,9 @@ Maybe<void> KVStore::AssignToObject(v8::Isolate* isolate,
360360}
361361
362362struct TraceEnvVarOptions {
363- bool print_message : 1 = 0 ;
364- bool print_js_stack : 1 = 0 ;
365- bool print_native_stack : 1 = 0 ;
363+ bool print_message : 1 = false ;
364+ bool print_js_stack : 1 = false ;
365+ bool print_native_stack : 1 = false ;
366366};
367367
368368template <typename ... Args>
@@ -387,13 +387,13 @@ TraceEnvVarOptions GetTraceEnvVarOptions(Environment* env) {
387387 ? env->options ()
388388 : per_process::cli_options->per_isolate ->per_env ;
389389 if (cli_options->trace_env ) {
390- options.print_message = 1 ;
390+ options.print_message = true ;
391391 };
392392 if (cli_options->trace_env_js_stack ) {
393- options.print_js_stack = 1 ;
393+ options.print_js_stack = true ;
394394 };
395395 if (cli_options->trace_env_native_stack ) {
396- options.print_native_stack = 1 ;
396+ options.print_native_stack = true ;
397397 };
398398 return options;
399399}
You can’t perform that action at this time.
0 commit comments