File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ class XRCORE_API CLocatorAPI : Noncopyable
123
123
using files_set = xr_set<file, file_pred>;
124
124
using files_it = files_set::iterator;
125
125
126
- using FFVec = xr_vector<_finddata64i32_t >;
126
+ using FFVec = xr_vector<_finddata_t >;
127
127
FFVec rec_files;
128
128
129
129
int m_iLockRescan;
Original file line number Diff line number Diff line change 4
4
#if defined(WINDOWS)
5
5
#include < intrin.h> // __rdtsc
6
6
#include < process.h>
7
+
8
+ #if defined(_MSC_VER)
7
9
#include < powerbase.h>
10
+ #elif defined(__GNUC__)
11
+ #include < float.h> // _controlfp
12
+ // #include_next <float.h>
13
+ // how to include mingw32\i686-w64-mingw32\include\float.h
14
+ // instead of mingw32\lib\gcc\i686-w64-mingw32\7.3.0\include\float.h
15
+ // ?
16
+ #endif
17
+
8
18
#elif defined(LINUX)
9
19
#include < x86intrin.h> // __rdtsc
10
20
#include < fpu_control.h>
You can’t perform that action at this time.
0 commit comments