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:
parent
e1d08e9526
commit
66b24a6c18
|
@ -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"
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue