1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-06-24 00:11:33 +00:00

Strange issue with Linux compilation (<memory> header)

This commit is contained in:
Azdul 2019-01-17 09:11:19 +01:00
parent 4c499983ca
commit 0c3a3ea241
2 changed files with 1 additions and 2 deletions

View file

@ -1,11 +1,9 @@
#include "bsaarchive.hpp" #include "bsaarchive.hpp"
#include <components/bsa/tes4bsa_file.hpp> #include <components/bsa/tes4bsa_file.hpp>
#include <memory>
namespace VFS namespace VFS
{ {
BsaArchive::BsaArchive(const std::string &filename) BsaArchive::BsaArchive(const std::string &filename)
{ {
Bsa::BsaVersion bsaVersion = Bsa::TES4BSAFile::detectVersion(filename); Bsa::BsaVersion bsaVersion = Bsa::TES4BSAFile::detectVersion(filename);

View file

@ -4,6 +4,7 @@
#include "archive.hpp" #include "archive.hpp"
#include <components/bsa/bsa_file.hpp> #include <components/bsa/bsa_file.hpp>
#include <memory>
namespace VFS namespace VFS
{ {