3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-12 10:14:42 +00:00

add some static

This commit is contained in:
Nuno Lopes 2019-07-07 15:30:32 +01:00
parent 6e63734882
commit 6bbe8e2619
2 changed files with 3 additions and 11 deletions

View file

@ -38,7 +38,7 @@ bool is_numeral_sort(Z3_context c, Z3_sort ty) {
return true;
}
bool check_numeral_sort(Z3_context c, Z3_sort ty) {
static bool check_numeral_sort(Z3_context c, Z3_sort ty) {
bool is_num = is_numeral_sort(c, ty);
if (!is_num) {
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);