Fix win build

This commit is contained in:
davidpanderson 2024-08-02 03:15:35 -07:00
parent a979514a70
commit a7239ad235
2 changed files with 2 additions and 1 deletions

View File

@ -1119,6 +1119,7 @@ bool MSG_QUEUE::timeout(double diff) {
// Called at startup and every day after that. // Called at startup and every day after that.
// //
void ACTIVE_TASK_SET::report_overdue() { void ACTIVE_TASK_SET::report_overdue() {
#ifndef SIM
unsigned int i; unsigned int i;
ACTIVE_TASK* atp; ACTIVE_TASK* atp;
double mod = cc_config.max_overdue_days; double mod = cc_config.max_overdue_days;
@ -1140,6 +1141,7 @@ void ACTIVE_TASK_SET::report_overdue() {
); );
} }
} }
#endif
} }
// scan the slot directory, looking for files with names // scan the slot directory, looking for files with names

View File

@ -297,7 +297,6 @@
<ClCompile Include="..\client\acct_setup.cpp" /> <ClCompile Include="..\client\acct_setup.cpp" />
<ClCompile Include="..\client\app.cpp" /> <ClCompile Include="..\client\app.cpp" />
<ClCompile Include="..\client\app_config.cpp" /> <ClCompile Include="..\client\app_config.cpp" />
<ClCompile Include="..\client\app_control.cpp" />
<ClCompile Include="..\client\client_state.cpp" /> <ClCompile Include="..\client\client_state.cpp" />
<ClCompile Include="..\client\client_types.cpp" /> <ClCompile Include="..\client\client_types.cpp" />
<ClCompile Include="..\client\coproc_sched.cpp" /> <ClCompile Include="..\client\coproc_sched.cpp" />