Skip to content
Snippets Groups Projects
Commit e7548f44 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

ignore unchecked statuscodes coming from libCore.so

parent c2d751db
No related branches found
No related tags found
1 merge request!188ignore unchecked StatusCodes coming from libCore.so
......@@ -103,7 +103,8 @@ StatusCodeSvc::regFnc(const std::string& fnc, const std::string& lib) {
if (m_dict &&
(lib.compare(lib.length()-7, 7, "Dict.so") == 0 ||
lib.compare(lib.length()-8, 8, "Cling.so") == 0)) {
lib.compare(lib.length()-8, 8, "Cling.so") == 0 ||
lib.compare(lib.length()-7, 7, "Core.so") == 0)) {
return;
}
// this appears only with gcc 4.9...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment