Fix compilation errors.

- error: field ‘filename’ has incomplete type ‘std::string’ {aka ‘std::__cxx11::basic_string<char>’}
- error: ‘uint8_t’ has not been declared
- error: aggregate ‘std::array<char, 128> buffer’ has incomplete type and cannot be defined
This commit is contained in:
kitty-panics 2024-01-29 21:23:31 -05:00
parent e54e2f5b5e
commit 4b92f756c4
3 changed files with 3 additions and 0 deletions

View File

@ -20,6 +20,7 @@ this program. If not, see <https://www.gnu.org/licenses/>.
#include "formats/file_signature.h"
#include <array>
#include <memory>
namespace maconv {

View File

@ -20,6 +20,7 @@ this program. If not, see <https://www.gnu.org/licenses/>.
#pragma once
#include <string>
#include <memory>
#include <vector>
#include <time.h>

View File

@ -20,6 +20,7 @@ this program. If not, see <https://www.gnu.org/licenses/>.
#pragma once
#include <cstdint>
#include <ostream>
#include <string>