got rid of a number of ifdefs which should not be needed anymore

This commit is contained in:
Jean-Francois Dockes 2015-10-08 14:48:50 +02:00
parent d373565e0c
commit f6cbe86e3e
5 changed files with 4 additions and 20 deletions

View file

@ -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
}