3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 21:38:44 +00:00

change typename to class in optional to deal with compilation

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-08-17 21:00:14 -07:00
parent e1d08e9526
commit 66b24a6c18
2 changed files with 1 additions and 2 deletions

View file

@ -18,7 +18,6 @@ Revision History:
--*/ --*/
#include "util/debug.h" #include "util/debug.h"
#include "util/optional.h"
#include "ast/ast_pp.h" #include "ast/ast_pp.h"
#include "muz/rel/dl_interval_relation.h" #include "muz/rel/dl_interval_relation.h"
#include "muz/rel/dl_relation_manager.h" #include "muz/rel/dl_relation_manager.h"

View file

@ -21,7 +21,7 @@ Revision History:
#ifndef OPTIONAL_H_ #ifndef OPTIONAL_H_
#define OPTIONAL_H_ #define OPTIONAL_H_
template<typename T> template<class T>
class optional { class optional {
T* m_obj; T* m_obj;
char m_initialized; char m_initialized;