3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

update header guards to be C++ style. Fixes issue #9

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-07-08 23:18:40 -07:00
parent f145ceecb4
commit 4bc044c982
676 changed files with 1679 additions and 1619 deletions

View file

@ -27,8 +27,8 @@ Author:
Revision History:
--*/
#ifndef _FUNC_INTERP_H
#define _FUNC_INTERP_H
#ifndef FUNC_INTERP_H_
#define FUNC_INTERP_H_
#include"ast.h"
#include"ast_translation.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _MODEL_H_
#define _MODEL_H_
#ifndef MODEL_H_
#define MODEL_H_
#include"model_core.h"
#include"ref.h"
@ -65,5 +65,5 @@ public:
typedef ref<model> model_ref;
#endif /* _MODEL_H_ */
#endif /* MODEL_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _MODEL2EXPR_H_
#define _MODEL2EXPR_H_
#ifndef MODEL2EXPR_H_
#define MODEL2EXPR_H_
#include"model.h"
@ -41,5 +41,5 @@ public:
};
#endif /* _MODEL2EXPR_H_ */
#endif /* MODEL2EXPR_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _MODEL_CORE_H
#define _MODEL_CORE_H
#ifndef MODEL_CORE_H_
#define MODEL_CORE_H_
#include"ast.h"
#include"obj_hashtable.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _MODEL_EVALUATOR_H_
#define _MODEL_EVALUATOR_H_
#ifndef MODEL_EVALUATOR_H_
#define MODEL_EVALUATOR_H_
#include"ast.h"
#include"rewriter_types.h"

View file

@ -17,8 +17,8 @@ Revision History:
--*/
#ifndef _MODEL_IMPLICANT_H_
#define _MODEL_IMPLICANT_H_
#ifndef MODEL_IMPLICANT_H_
#define MODEL_IMPLICANT_H_
#include "ast.h"
#include "ast_pp.h"

View file

@ -17,8 +17,8 @@ Revision History:
--*/
#ifndef _MODEL_PP_H_
#define _MODEL_PP_H_
#ifndef MODEL_PP_H_
#define MODEL_PP_H_
#include<iostream>
class model_core;

View file

@ -17,8 +17,8 @@ Revision History:
--*/
#ifndef _MODEL_SMT2_PP_H_
#define _MODEL_SMT2_PP_H_
#ifndef MODEL_SMT2_PP_H_
#define MODEL_SMT2_PP_H_
#include"ast_printer.h"
#include"model_core.h"

View file

@ -15,8 +15,8 @@ Author:
Revision History:
--*/
#ifndef _MODEL_V2_PP_H_
#define _MODEL_V2_PP_H_
#ifndef MODEL_V2_PP_H_
#define MODEL_V2_PP_H_
#include<iostream>
class model_core;