From ec76d2a21da923480484249c1e054b6cc580d1dd Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Mon, 9 Mar 2015 22:03:07 +0100 Subject: [PATCH] Use Pointer<...> in BitcodeEmitter.hpp instead of unique_ptr --- BitcodeEmitter.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BitcodeEmitter.hpp b/BitcodeEmitter.hpp index 53a2d42..a654db6 100644 --- a/BitcodeEmitter.hpp +++ b/BitcodeEmitter.hpp @@ -21,7 +21,7 @@ */ #include "Emitter.hpp" -#include +#include "Pointers.hpp" namespace llvm { @@ -68,7 +68,7 @@ public: private: bool emitSemiExpression(Id const& left, SemiExpression const& right); - std::unique_ptr module; + Pointer module; Private *d; };