Fix warning

This commit is contained in:
Romain Thomas 2021-01-18 08:11:42 +01:00
parent 62a2e8e8c6
commit 1aff75d33f
3 changed files with 3 additions and 1 deletions

View File

@ -192,6 +192,6 @@ class LIEF_API x509 : public Object {
}
}
ENABLE_BITMASK_OPERATORS(LIEF::PE::x509::VERIFICATION_FLAGS);
ENABLE_BITMASK_OPERATORS(LIEF::PE::x509::VERIFICATION_FLAGS)
#endif

View File

@ -29,6 +29,7 @@ Attribute::Attribute(SIG_ATTRIBUTE_TYPES type) :
{}
Attribute::Attribute(const Attribute& other) :
Object{other},
type_{other.type_}
{}

View File

@ -270,6 +270,7 @@ std::string get_imphash(const Binary& binary, IMPHASH_MODE mode) {
return get_imphash_std(binary);
}
}
return "";
}
Import resolve_ordinals(const Import& import, bool strict, bool use_std) {