1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-29 21:45:32 +00:00

Fix compile error

This commit is contained in:
scrawl 2015-02-27 19:58:43 +01:00
parent 7e684853fc
commit f91696723f

View file

@ -5,13 +5,16 @@
#include "lowlevelfile.hpp"
namespace
{
// somewhat arbitrary though 64KB buffers didn't seem to improve performance any
const size_t sBufferSize = 4096;
}
namespace Files
{
class ConstrainedFileStreamBuf : public std::streambuf
{
// somewhat arbitrary though 64KB buffers didn't seem to improve performance any
static const size_t sBufferSize = 4096;
size_t mOrigin;
size_t mSize;