mirror of https://github.com/OpenMW/openmw.git
Merge branch 'istream_ptr' into 'master'
Move Files::IStreamPtr alias to a separate header See merge request OpenMW/openmw!2142LTO-timing^2
commit
f393fee9d1
@ -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