mirror of https://github.com/OpenMW/openmw.git
Move Files::IStreamPtr alias to a separate header
To avoid transitive include of Windows.h all over the engine.LTO-timing^2
parent
bf17dc55e5
commit
6c8ed4d19c
@ -0,0 +1,12 @@
|
||||
#ifndef OPENMW_COMPONENTS_FILES_ISTREAMPTR_H
|
||||
#define OPENMW_COMPONENTS_FILES_ISTREAMPTR_H
|
||||
|
||||
#include <iosfwd>
|
||||
#include <memory>
|
||||
|
||||
namespace Files
|
||||
{
|
||||
using IStreamPtr = std::unique_ptr<std::istream>;
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue