Skip to content

Commit

Permalink
xrCore: remove unused defines
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleivg committed Nov 8, 2018
1 parent 93c51f8 commit c779d48
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/xrCore/LocatorAPI_defs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,11 @@
//////////////////////////////////////////////////////////////////////
FS_File::FS_File(const xr_string& nm, long sz, time_t modif, unsigned attr) { set(nm, sz, modif, attr); }
FS_File::FS_File(const xr_string& nm) { set(nm, 0, 0, 0); }
#if defined(WINDOWS)
FS_File::FS_File(const _FINDDATA_T& f) { set(f.name, f.size, f.time_write, (f.attrib & _A_SUBDIR) ? flSubDir : 0); }
FS_File::FS_File(const xr_string& nm, const _FINDDATA_T& f)
{
set(nm, f.size, f.time_write, (f.attrib & _A_SUBDIR) ? flSubDir : 0);
}
#else
FS_File::FS_File(const _FINDDATA_T& f) {}
FS_File::FS_File(const xr_string& nm, const _FINDDATA_T& f) {}
#endif


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

0 comments on commit c779d48

Please sign in to comment.