filesystem.hpp: include missing <cstdint>
Without the change build fails on upcoming `gcc-15` as: In file included from src/desktop/paths.cpp:20: src/filesystem.hpp:232:13: error: 'uint8_t' was not declared in this scope 232 | std::vector<uint8_t> read_file_binary(const std::string& fname); | ^~~~~~~
This commit is contained in:
parent
78a4c5c494
commit
1fb93b68d1
1 changed files with 1 additions and 0 deletions
|
@ -21,6 +21,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <ctime>
|
||||
#include <cstdint>
|
||||
#include <fstream>
|
||||
#include <iosfwd>
|
||||
#include <memory>
|
||||
|
|
Loading…
Add table
Reference in a new issue