fix build without mmap

This commit is contained in:
Evgeniy Dushistov
2010-01-26 17:25:22 +00:00
parent 3da4808990
commit ed81937443

View File

@@ -18,11 +18,11 @@
class MapFile {
public:
MapFile(void) :
data(NULL),
data(NULL)
#ifdef HAVE_MMAP
mmap_fd(-1)
, mmap_fd(-1)
#elif defined(_WIN32)
hFile(0),
,hFile(0),
hFileMap(0)
#endif
{