[Bug 77] New: Compilation error in filesystem.cpp on win32
| Newsgroups | gmane.comp.video.gephex.devel |
|---|---|
| Message-ID | <[email protected]> |
https://bugs.gephex.org/show_bug.cgi?id=77
Summary: Compilation error in filesystem.cpp on win32
Product: GePhex
Version: 0.4
Platform: PC
OS/Version: Windows XP
Status: NEW
Severity: critical
Priority: P1
Component: engine
AssignedTo: [email protected]
ReportedBy: [email protected]
Because of a small change in the filesystem header
(the type of a file is now an enum utils::DirEntry::FileType
instead of an int), the file does not compile on win32.
Fix is trivial (change
int type;
to
DirEntry::FileType type;
in base/src/utils/filesystem.cpp:26).
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.