got rid of a number of ifdefs which should not be needed anymore
This commit is contained in:
parent
d373565e0c
commit
f6cbe86e3e
5 changed files with 4 additions and 20 deletions
|
@ -28,6 +28,9 @@ using namespace std;
|
|||
|
||||
bool checkRetryFailed(RclConfig *conf, bool record)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
return true;
|
||||
#else
|
||||
string cmd;
|
||||
|
||||
if (!conf->getConfParam("checkneedretryindexscript", cmd)) {
|
||||
|
@ -51,4 +54,5 @@ bool checkRetryFailed(RclConfig *conf, bool record)
|
|||
return true;
|
||||
}
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue