Skip to content

Commit

Permalink
symbols: include utility after C includes
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Olivier <[email protected]>
  • Loading branch information
martin-olivier committed Dec 27, 2024
1 parent 6c5bdb6 commit b77555b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/symbols.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ std::vector<std::string> get_symbols(HMODULE handle, bool demangle, bool loadabl
#include <mach-o/loader.h>
#include <mach-o/nlist.h>
#include <mach-o/fat.h>
#include <utility>
#include <dlfcn.h>
#include <fcntl.h>
#include <unistd.h>
#include <utility>

static std::vector<std::string> get_symbols_at_off(void *handle, int fd, bool demangle, bool loadable, off_t offset, bool is_64_bit) {
std::vector<std::string> symbols_list;
Expand Down

0 comments on commit b77555b

Please sign in to comment.