Use Pointer<...> in BitcodeEmitter.hpp instead of unique_ptr

This commit is contained in:
Stefano Sanfilippo 2015-03-09 22:03:07 +01:00
parent dc5fffbddc
commit ec76d2a21d

View File

@ -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;
};