3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-08 16:25:48 +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

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _USER_DECL_PLUGIN_H_
#define _USER_DECL_PLUGIN_H_
#ifndef USER_DECL_PLUGIN_H_
#define USER_DECL_PLUGIN_H_
#include"ast.h"
#include"obj_hashtable.h"
@ -58,5 +58,5 @@ public:
virtual void get_sort_names(svector<builtin_name> & sort_names, symbol const & logic);
};
#endif /* _USER_DECL_PLUGIN_H_ */
#endif /* USER_DECL_PLUGIN_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _USER_SIMPLIFIER_PLUGIN_H_
#define _USER_SIMPLIFIER_PLUGIN_H_
#ifndef USER_SIMPLIFIER_PLUGIN_H_
#define USER_SIMPLIFIER_PLUGIN_H_
#include"simplifier_plugin.h"
@ -62,5 +62,5 @@ public:
virtual void flush_caches();
};
#endif /* _USER_SIMPLIFIER_PLUGIN_H_ */
#endif /* USER_SIMPLIFIER_PLUGIN_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _USER_SMT_THEORY_H_
#define _USER_SMT_THEORY_H_
#ifndef USER_SMT_THEORY_H_
#define USER_SMT_THEORY_H_
#include"user_decl_plugin.h"
#include"user_simplifier_plugin.h"
@ -320,5 +320,5 @@ namespace smt {
};
#endif /* _USER_SMT_THEORY_H_ */
#endif /* USER_SMT_THEORY_H_ */