From f03dc98489bec4cb09108f6aea7231f2f7ecf070 Mon Sep 17 00:00:00 2001 From: Antonio Flores Montoya <afloresmontoya@grammatech.com> Date: Mon, 29 Jul 2019 16:27:42 -0400 Subject: [PATCH] remove std:: --- include/ehp.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ehp.hpp b/include/ehp.hpp index 7d93e52..a67d653 100644 --- a/include/ehp.hpp +++ b/include/ehp.hpp @@ -39,7 +39,7 @@ class EHProgramInstruction_t public: virtual ~EHProgramInstruction_t() {} virtual void print(uint64_t &pc, int64_t caf=1) const = 0; - virtual std::tuple<std::string, int64_t, int64_t> decode() const = 0; + virtual tuple<string, int64_t, int64_t> decode() const = 0; virtual uint64_t getSize() const = 0; virtual bool isNop() const = 0; virtual bool isDefCFAOffset() const = 0; -- GitLab