3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-12 18:24:43 +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

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