Skip to content
Snippets Groups Projects
Commit 7ff90e11 authored by Luca Erbetta's avatar Luca Erbetta :rocket:
Browse files

Fixed GCC9 warnings

parent f67a57f7
Branches
No related tags found
No related merge requests found
......@@ -473,6 +473,8 @@ public:
//and in this case it is forbidden to lock mutexes
fileTables.push_back(fdt);
}
#else
(void)fdt;
#endif //WITH_PROCESSES
}
......@@ -486,6 +488,8 @@ public:
#ifdef WITH_PROCESSES
Lock<FastMutex> l(mutex);
fileTables.remove(fdt);
#else
(void)fdt;
#endif //WITH_PROCESSES
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment