You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_CRTIMP2_PURE long __cdecl _Xtime_diff_to_millis(constxtime*);
_CRTIMP2_PURE long __cdecl _Xtime_diff_to_millis2(constxtime*, constxtime*);
_CRTIMP2_PURE long long __cdecl _Xtime_get_ticks();
#define_XTIME_NSECS_PER_TICK 100
#define_XTIME_TICKS_PER_TIME_T 10000000LL
_CRTIMP2_PURE long long __cdecl _Query_perf_counter();
_CRTIMP2_PURE long long __cdecl _Query_perf_frequency();
Of these functions, xtime_get() and _Xtime_diff_to_millis2() are used within src only; there's no need for them to be exported.
Furthermore, _Xtime_diff_to_millis() is completely unused and should be removed.
Changing the export surface is a binary compatibility break, so this is a vNext issue.
vNext note: Resolving this issue will require breaking binary compatibility. We won't be able to accept pull requests for this issue until the vNext branch is available. See #169 for more information.
The text was updated successfully, but these errors were encountered:
STL/stl/inc/xtimec.h
Lines 28 to 37 in f9b1dcc
Of these functions,
xtime_get()
and_Xtime_diff_to_millis2()
are used withinsrc
only; there's no need for them to be exported.Furthermore,
_Xtime_diff_to_millis()
is completely unused and should be removed.Changing the export surface is a binary compatibility break, so this is a vNext issue.
vNext note: Resolving this issue will require breaking binary compatibility. We won't be able to accept pull requests for this issue until the vNext branch is available. See #169 for more information.
The text was updated successfully, but these errors were encountered: