3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-21 05:13:39 +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 _MPZ_H_
#define _MPZ_H_
#ifndef MPZ_H_
#define MPZ_H_
#include<limits.h>
#include<string>
@ -831,5 +831,5 @@ typedef _scoped_numeral<unsynch_mpz_manager> scoped_mpz;
typedef _scoped_numeral<synch_mpz_manager> scoped_synch_mpz;
typedef _scoped_numeral_vector<unsynch_mpz_manager> scoped_mpz_vector;
#endif /* _MPZ_H_ */
#endif /* MPZ_H_ */