Skip to content

Commit c779d48

Browse files
committed
xrCore: remove unused defines
1 parent 93c51f8 commit c779d48

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/xrCore/LocatorAPI_defs.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,11 @@
1717
//////////////////////////////////////////////////////////////////////
1818
FS_File::FS_File(const xr_string& nm, long sz, time_t modif, unsigned attr) { set(nm, sz, modif, attr); }
1919
FS_File::FS_File(const xr_string& nm) { set(nm, 0, 0, 0); }
20-
#if defined(WINDOWS)
2120
FS_File::FS_File(const _FINDDATA_T& f) { set(f.name, f.size, f.time_write, (f.attrib & _A_SUBDIR) ? flSubDir : 0); }
2221
FS_File::FS_File(const xr_string& nm, const _FINDDATA_T& f)
2322
{
2423
set(nm, f.size, f.time_write, (f.attrib & _A_SUBDIR) ? flSubDir : 0);
2524
}
26-
#else
27-
FS_File::FS_File(const _FINDDATA_T& f) {}
28-
FS_File::FS_File(const xr_string& nm, const _FINDDATA_T& f) {}
29-
#endif
30-
3125

3226
void FS_File::set(const xr_string& nm, long sz, time_t modif, unsigned attr)
3327
{

0 commit comments

Comments
 (0)