Use Pointer<...> in BitcodeEmitter.hpp instead of unique_ptr
This commit is contained in:
parent
dc5fffbddc
commit
ec76d2a21d
|
@ -21,7 +21,7 @@
|
|||
*/
|
||||
|
||||
#include "Emitter.hpp"
|
||||
#include <memory>
|
||||
#include "Pointers.hpp"
|
||||
|
||||
|
||||
namespace llvm {
|
||||
|
@ -68,7 +68,7 @@ public:
|
|||
private:
|
||||
bool emitSemiExpression(Id const& left, SemiExpression const& right);
|
||||
|
||||
std::unique_ptr<llvm::Module> module;
|
||||
Pointer<llvm::Module> module;
|
||||
Private *d;
|
||||
};
|
||||
|
||||
|
|
Reference in New Issue
Block a user