14
14
#include < util/config.h>
15
15
#include < util/exit_codes.h>
16
16
#include < util/invariant.h>
17
- #include < util/make_unique.h>
18
17
#include < util/version.h>
19
18
#include < util/xml.h>
20
19
@@ -523,7 +522,7 @@ int jbmc_parse_optionst::doit()
523
522
options.get_bool_option (" stop-on-fail" ) && options.get_bool_option (" paths" ))
524
523
{
525
524
verifier =
526
- util_make_unique <stop_on_fail_verifiert<java_single_path_symex_checkert>>(
525
+ std::make_unique <stop_on_fail_verifiert<java_single_path_symex_checkert>>(
527
526
options, ui_message_handler, *goto_model_ptr);
528
527
}
529
528
else if (
@@ -533,13 +532,13 @@ int jbmc_parse_optionst::doit()
533
532
if (options.get_bool_option (" localize-faults" ))
534
533
{
535
534
verifier =
536
- util_make_unique <stop_on_fail_verifier_with_fault_localizationt<
535
+ std::make_unique <stop_on_fail_verifier_with_fault_localizationt<
537
536
java_multi_path_symex_checkert>>(
538
537
options, ui_message_handler, *goto_model_ptr);
539
538
}
540
539
else
541
540
{
542
- verifier = util_make_unique <
541
+ verifier = std::make_unique <
543
542
stop_on_fail_verifiert<java_multi_path_symex_checkert>>(
544
543
options, ui_message_handler, *goto_model_ptr);
545
544
}
@@ -548,7 +547,7 @@ int jbmc_parse_optionst::doit()
548
547
!options.get_bool_option (" stop-on-fail" ) &&
549
548
options.get_bool_option (" paths" ))
550
549
{
551
- verifier = util_make_unique <all_properties_verifier_with_trace_storaget<
550
+ verifier = std::make_unique <all_properties_verifier_with_trace_storaget<
552
551
java_single_path_symex_checkert>>(
553
552
options, ui_message_handler, *goto_model_ptr);
554
553
}
@@ -559,13 +558,13 @@ int jbmc_parse_optionst::doit()
559
558
if (options.get_bool_option (" localize-faults" ))
560
559
{
561
560
verifier =
562
- util_make_unique <all_properties_verifier_with_fault_localizationt<
561
+ std::make_unique <all_properties_verifier_with_fault_localizationt<
563
562
java_multi_path_symex_checkert>>(
564
563
options, ui_message_handler, *goto_model_ptr);
565
564
}
566
565
else
567
566
{
568
- verifier = util_make_unique <all_properties_verifier_with_trace_storaget<
567
+ verifier = std::make_unique <all_properties_verifier_with_trace_storaget<
569
568
java_multi_path_symex_checkert>>(
570
569
options, ui_message_handler, *goto_model_ptr);
571
570
}
@@ -591,7 +590,7 @@ int jbmc_parse_optionst::get_goto_program(
591
590
lazy_goto_model.initialize (cmdline.args , options);
592
591
593
592
class_hierarchy =
594
- util_make_unique <class_hierarchyt>(lazy_goto_model.symbol_table );
593
+ std::make_unique <class_hierarchyt>(lazy_goto_model.symbol_table );
595
594
596
595
// Show the class hierarchy
597
596
if (cmdline.isset (" show-class-hierarchy" ))
@@ -650,7 +649,7 @@ int jbmc_parse_optionst::get_goto_program(
650
649
}
651
650
652
651
goto_model_ptr =
653
- util_make_unique <lazy_goto_modelt>(std::move (lazy_goto_model));
652
+ std::make_unique <lazy_goto_modelt>(std::move (lazy_goto_model));
654
653
}
655
654
656
655
log .status () << config.object_bits_info () << messaget::eom;
0 commit comments