15
15
#include < util/exit_codes.h>
16
16
#include < util/help_formatter.h>
17
17
#include < util/invariant.h>
18
- #include < util/make_unique.h>
19
18
#include < util/version.h>
20
19
#include < util/xml.h>
21
20
@@ -535,7 +534,7 @@ int jbmc_parse_optionst::doit()
535
534
options.get_bool_option (" stop-on-fail" ) && options.get_bool_option (" paths" ))
536
535
{
537
536
verifier =
538
- util_make_unique <stop_on_fail_verifiert<java_single_path_symex_checkert>>(
537
+ std::make_unique <stop_on_fail_verifiert<java_single_path_symex_checkert>>(
539
538
options, ui_message_handler, *goto_model_ptr);
540
539
}
541
540
else if (
@@ -545,13 +544,13 @@ int jbmc_parse_optionst::doit()
545
544
if (options.get_bool_option (" localize-faults" ))
546
545
{
547
546
verifier =
548
- util_make_unique <stop_on_fail_verifier_with_fault_localizationt<
547
+ std::make_unique <stop_on_fail_verifier_with_fault_localizationt<
549
548
java_multi_path_symex_checkert>>(
550
549
options, ui_message_handler, *goto_model_ptr);
551
550
}
552
551
else
553
552
{
554
- verifier = util_make_unique <
553
+ verifier = std::make_unique <
555
554
stop_on_fail_verifiert<java_multi_path_symex_checkert>>(
556
555
options, ui_message_handler, *goto_model_ptr);
557
556
}
@@ -560,7 +559,7 @@ int jbmc_parse_optionst::doit()
560
559
!options.get_bool_option (" stop-on-fail" ) &&
561
560
options.get_bool_option (" paths" ))
562
561
{
563
- verifier = util_make_unique <all_properties_verifier_with_trace_storaget<
562
+ verifier = std::make_unique <all_properties_verifier_with_trace_storaget<
564
563
java_single_path_symex_checkert>>(
565
564
options, ui_message_handler, *goto_model_ptr);
566
565
}
@@ -571,13 +570,13 @@ int jbmc_parse_optionst::doit()
571
570
if (options.get_bool_option (" localize-faults" ))
572
571
{
573
572
verifier =
574
- util_make_unique <all_properties_verifier_with_fault_localizationt<
573
+ std::make_unique <all_properties_verifier_with_fault_localizationt<
575
574
java_multi_path_symex_checkert>>(
576
575
options, ui_message_handler, *goto_model_ptr);
577
576
}
578
577
else
579
578
{
580
- verifier = util_make_unique <all_properties_verifier_with_trace_storaget<
579
+ verifier = std::make_unique <all_properties_verifier_with_trace_storaget<
581
580
java_multi_path_symex_checkert>>(
582
581
options, ui_message_handler, *goto_model_ptr);
583
582
}
@@ -603,7 +602,7 @@ int jbmc_parse_optionst::get_goto_program(
603
602
lazy_goto_model.initialize (cmdline.args , options);
604
603
605
604
class_hierarchy =
606
- util_make_unique <class_hierarchyt>(lazy_goto_model.symbol_table );
605
+ std::make_unique <class_hierarchyt>(lazy_goto_model.symbol_table );
607
606
608
607
// Show the class hierarchy
609
608
if (cmdline.isset (" show-class-hierarchy" ))
@@ -662,7 +661,7 @@ int jbmc_parse_optionst::get_goto_program(
662
661
}
663
662
664
663
goto_model_ptr =
665
- util_make_unique <lazy_goto_modelt>(std::move (lazy_goto_model));
664
+ std::make_unique <lazy_goto_modelt>(std::move (lazy_goto_model));
666
665
}
667
666
668
667
log .status () << config.object_bits_info () << messaget::eom;
0 commit comments