Skip to content

Commit 0c39baf

Browse files
luadebugromainthomas
authored andcommitted
Fix missing headers (#1143)
1 parent 75a27f0 commit 0c39baf

File tree

9 files changed

+10
-0
lines changed

9 files changed

+10
-0
lines changed

src/MachO/BuildVersion.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* limitations under the License.
1515
*/
1616
#include <spdlog/fmt/fmt.h>
17+
#include <spdlog/fmt/ranges.h>
1718
#include "LIEF/Visitor.hpp"
1819

1920
#include "frozen.hpp"

src/MachO/DylibCommand.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* limitations under the License.
1515
*/
1616
#include "spdlog/fmt/fmt.h"
17+
#include "spdlog/fmt/ranges.h"
1718
#include "LIEF/utils.hpp"
1819
#include "LIEF/Visitor.hpp"
1920

src/MachO/SourceVersion.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* limitations under the License.
1515
*/
1616
#include "spdlog/fmt/fmt.h"
17+
#include "spdlog/fmt/ranges.h"
1718
#include "LIEF/Visitor.hpp"
1819

1920
#include "LIEF/MachO/SourceVersion.hpp"

src/MachO/VersionMin.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* limitations under the License.
1515
*/
1616
#include "spdlog/fmt/fmt.h"
17+
#include "spdlog/fmt/ranges.h"
1718
#include "LIEF/Visitor.hpp"
1819

1920
#include "LIEF/MachO/VersionMin.hpp"

src/PE/Header.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include "frozen.hpp"
2424

2525
#include <spdlog/fmt/fmt.h>
26+
#include <spdlog/fmt/ranges.h>
2627

2728
namespace LIEF {
2829
namespace PE {

src/PE/OptionalHeader.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include "PE/Structures.hpp"
2424

2525
#include <spdlog/fmt/fmt.h>
26+
#include <spdlog/fmt/ranges.h>
2627

2728
namespace LIEF {
2829
namespace PE {

src/PE/TLS.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#include "PE/Structures.hpp"
2222

2323
#include "spdlog/fmt/fmt.h"
24+
#include "spdlog/fmt/ranges.h"
2425

2526
namespace LIEF {
2627
namespace PE {

src/internal_utils.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@
1515
*/
1616
#ifndef LIEF_INTERNAL_UTILS_HEADER
1717
#define LIEF_INTERNAL_UTILS_HEADER
18+
#include <memory>
1819
#include <string>
1920
#include <vector>
2021
#include <set>
2122
#include <algorithm>
2223
#include <unordered_map>
2324
#include <sstream>
2425
#include "spdlog/fmt/fmt.h"
26+
#include "spdlog/fmt/ranges.h"
2527

2628
#include "LIEF/span.hpp"
2729
#include "LIEF/errors.hpp"

src/logging.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
#include <spdlog/spdlog.h>
2626
#include <spdlog/fmt/fmt.h>
27+
#include <spdlog/fmt/ranges.h>
2728

2829
#define LIEF_TRACE(...) LIEF::logging::Logger::instance().trace(__VA_ARGS__)
2930
#define LIEF_DEBUG(...) LIEF::logging::Logger::instance().debug(__VA_ARGS__)

0 commit comments

Comments
 (0)