Skip to content

Commit

Permalink
Fix missing headers (#1143)
Browse files Browse the repository at this point in the history
  • Loading branch information
luadebug authored and romainthomas committed Dec 23, 2024
1 parent 75a27f0 commit 0c39baf
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/MachO/BuildVersion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/
#include <spdlog/fmt/fmt.h>
#include <spdlog/fmt/ranges.h>
#include "LIEF/Visitor.hpp"

#include "frozen.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/MachO/DylibCommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/
#include "spdlog/fmt/fmt.h"
#include "spdlog/fmt/ranges.h"
#include "LIEF/utils.hpp"
#include "LIEF/Visitor.hpp"

Expand Down
1 change: 1 addition & 0 deletions src/MachO/SourceVersion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/
#include "spdlog/fmt/fmt.h"
#include "spdlog/fmt/ranges.h"
#include "LIEF/Visitor.hpp"

#include "LIEF/MachO/SourceVersion.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/MachO/VersionMin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/
#include "spdlog/fmt/fmt.h"
#include "spdlog/fmt/ranges.h"
#include "LIEF/Visitor.hpp"

#include "LIEF/MachO/VersionMin.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/PE/Header.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include "frozen.hpp"

#include <spdlog/fmt/fmt.h>
#include <spdlog/fmt/ranges.h>

namespace LIEF {
namespace PE {
Expand Down
1 change: 1 addition & 0 deletions src/PE/OptionalHeader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include "PE/Structures.hpp"

#include <spdlog/fmt/fmt.h>
#include <spdlog/fmt/ranges.h>

namespace LIEF {
namespace PE {
Expand Down
1 change: 1 addition & 0 deletions src/PE/TLS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include "PE/Structures.hpp"

#include "spdlog/fmt/fmt.h"
#include "spdlog/fmt/ranges.h"

namespace LIEF {
namespace PE {
Expand Down
2 changes: 2 additions & 0 deletions src/internal_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@
*/
#ifndef LIEF_INTERNAL_UTILS_HEADER
#define LIEF_INTERNAL_UTILS_HEADER
#include <memory>
#include <string>
#include <vector>
#include <set>
#include <algorithm>
#include <unordered_map>
#include <sstream>
#include "spdlog/fmt/fmt.h"
#include "spdlog/fmt/ranges.h"

#include "LIEF/span.hpp"
#include "LIEF/errors.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/logging.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

#include <spdlog/spdlog.h>
#include <spdlog/fmt/fmt.h>
#include <spdlog/fmt/ranges.h>

#define LIEF_TRACE(...) LIEF::logging::Logger::instance().trace(__VA_ARGS__)
#define LIEF_DEBUG(...) LIEF::logging::Logger::instance().debug(__VA_ARGS__)
Expand Down

0 comments on commit 0c39baf

Please sign in to comment.