From 5bd55420a4e40315e07df3d46971f7be333e8f1d Mon Sep 17 00:00:00 2001 From: "Christoph M. Wintersteiger" Date: Thu, 11 Jun 2015 12:53:22 +0100 Subject: [PATCH] C API parameter annotation fix --- src/api/z3_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/z3_api.h b/src/api/z3_api.h index 4746d4a33..06997d99c 100644 --- a/src/api/z3_api.h +++ b/src/api/z3_api.h @@ -6945,7 +6945,7 @@ END_MLAPI_EXCLUDE def_API('Z3_tactic_apply_ex', APPLY_RESULT, (_in(CONTEXT), _in(TACTIC), _in(GOAL), _in(PARAMS))) */ - Z3_apply_result Z3_API Z3_tactic_apply_ex(Z3_context c, Z3_tactic t, Z3_goal g, Z3_params p); + Z3_apply_result Z3_API Z3_tactic_apply_ex(__in Z3_context c, __in Z3_tactic t, __in Z3_goal g, __in Z3_params p); #ifdef CorML3 /**