mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
This commit cleans and modernizes the code base of LIEF.
Among the changes: - It removes the ``and, or, not`` keywords - It updates the Documentation - It moves the internal structures in the ``details::`` namespace
This commit is contained in:
@@ -33,7 +33,15 @@ using setter_t = void (SysvHash::*)(T);
|
||||
template<>
|
||||
void create<SysvHash>(py::module& m) {
|
||||
|
||||
py::class_<SysvHash, LIEF::Object>(m, "SysvHash")
|
||||
py::class_<SysvHash, LIEF::Object>(m, "SysvHash",
|
||||
R"delim(
|
||||
Class which represents the SYSV hash for the symbols resolution
|
||||
|
||||
References:
|
||||
|
||||
* http://www.linker-aliens.org/blogs/ali/entry/gnu_hash_elf_sections/
|
||||
* https://docs.oracle.com/cd/E23824_01/html/819-0690/chapter6-48031.html
|
||||
)delim")
|
||||
.def(py::init<>())
|
||||
|
||||
.def_property_readonly("nbucket",
|
||||
|
||||
Reference in New Issue
Block a user