From b0af81db0ce367f522a25941a9e0749df1e8825d Mon Sep 17 00:00:00 2001
From: Jason Hiser <jdhiser@gmail.com>
Date: Fri, 1 Feb 2019 10:02:12 -0500
Subject: [PATCH] formalizing libtransform -- fixing tests

Former-commit-id: b53f628dc44037a1387052b0f4bccba58e995c22
---
 libElfDep/test/edt.cpp | 5 +----
 libElfDep/test/edt.hpp | 5 ++---
 2 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/libElfDep/test/edt.cpp b/libElfDep/test/edt.cpp
index 5aba58362..98e1633f1 100644
--- a/libElfDep/test/edt.cpp
+++ b/libElfDep/test/edt.cpp
@@ -1,18 +1,15 @@
 
 #include "edt.hpp"
 #include <libElfDep.hpp>
-#include <Rewrite_Utility.hpp>
 #include <algorithm> 
 
-using namespace libTransform;
 using namespace IRDB_SDK;
 using namespace std;
-using namespace IRDBUtility;
 using namespace ElfDep_Tester;
 
 
 ElfDep_Tester_t::ElfDep_Tester_t(FileIR_t* firp)
-	: Transform (NULL, firp, NULL)
+	: Transform (firp)
 {
 }
 
diff --git a/libElfDep/test/edt.hpp b/libElfDep/test/edt.hpp
index 10ed68b5c..24c082c47 100644
--- a/libElfDep/test/edt.hpp
+++ b/libElfDep/test/edt.hpp
@@ -2,18 +2,17 @@
 #include <string>
 #include <set>
 #include <irdb-core>
-#include <transform.hpp>
+#include <irdb-transform>
 
 namespace ElfDep_Tester
 {
 
-using namespace libTransform;
 using namespace IRDB_SDK;
 using namespace std;
 
 
 typedef set<string> StringSet_t;
-class ElfDep_Tester_t : libTransform::Transform
+class ElfDep_Tester_t : Transform
 {
 	public:
 	ElfDep_Tester_t(FileIR_t* firp);
-- 
GitLab