Skip to content

Commit

Permalink
Fix missing visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Dec 11, 2024
1 parent db5b5f9 commit 7eebe97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/LIEF/DWARF/types/ClassLike.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class LIEF_API ClassLike : public Type {
using Type::Type;

/// This represents a class/struct/union attribute
class Member {
class LIEF_API Member {
public:
Member(std::unique_ptr<details::Member> impl);
Member(Member&& other) noexcept;
Expand Down
2 changes: 1 addition & 1 deletion include/LIEF/ELF/NoteDetails/NoteGnuProperty.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class LIEF_API NoteGnuProperty : public Note {

/// This class wraps the different properties that can be used in a
/// `NT_GNU_PROPERTY_TYPE_0` note
class Property {
class LIEF_API Property {
public:

/// LIEF's mirror types of the original `GNU_PROPERTY_` values
Expand Down

0 comments on commit 7eebe97

Please sign in to comment.