Skip to content

Commit

Permalink
Fix simdjson 2.0 conflict: Change to get_active_implementation()
Browse files Browse the repository at this point in the history
Fixes #48
Split out of #47
  • Loading branch information
TysonAndre committed Aug 20, 2022
1 parent 13443ae commit fbb7859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php_simdjson.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ PHP_MINFO_FUNCTION (simdjson) {

php_info_print_table_row(2, "Version", PHP_SIMDJSON_VERSION);
php_info_print_table_row(2, "Support", SIMDJSON_SUPPORT_URL);
php_info_print_table_row(2, "Implementation", simdjson::active_implementation->description().c_str());
php_info_print_table_row(2, "Implementation", simdjson::get_active_implementation()->description().c_str());

php_info_print_table_end();
}
Expand Down

0 comments on commit fbb7859

Please sign in to comment.