Refactor some parts of the Architecture:

* JSON visitor are located in the format namespace
  * Visitor are *real* visitor
  * Visitable class has been renamed to Object
  * Due to a bug in Visual Studio 2015, we move to VS2017
This commit is contained in:
Romain Thomas
2018-03-13 16:49:02 +01:00
parent a5c2922c83
commit 3b17aba10e
438 changed files with 8114 additions and 6004 deletions
+2 -2
View File
@@ -18,7 +18,7 @@
#include "pyELF.hpp"
#include "LIEF/visitors/Hash.hpp"
#include "LIEF/ELF/hash.hpp"
#include "LIEF/ELF/AndroidNote.hpp"
template<class T>
@@ -53,7 +53,7 @@ void init_ELF_AndroidNote_class(py::module& m) {
.def("__ne__", &AndroidNote::operator!=)
.def("__hash__",
[] (const AndroidNote& note) {
return LIEF::Hash::hash(note);
return Hash::hash(note);
})
.def("__str__",