diff options
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/reservedid.cxx | 4 | ||||
-rw-r--r-- | compilerplugins/clang/store/constantfunction.cxx | 5 |
2 files changed, 1 insertions, 8 deletions
diff --git a/compilerplugins/clang/reservedid.cxx b/compilerplugins/clang/reservedid.cxx index 5fefb26c2589..cfb9a5b35818 100644 --- a/compilerplugins/clang/reservedid.cxx +++ b/compilerplugins/clang/reservedid.cxx @@ -167,9 +167,7 @@ bool ReservedId::VisitNamedDecl(NamedDecl const * decl) { && s != "__PK11_GetKeyData" // xmlsecurity/source/xmlsec/nss/nssrenam.h && s != "__current_exception" // bridges/inc/except.hxx, Windows - && s != "__data_start" // sal/osl/unx/system.cxx - && s != "__lxstat64" // setup_native/scripts/source/getuid.c - && s != "__lxstat") // setup_native/scripts/source/getuid.c + && s != "__data_start") // sal/osl/unx/system.cxx { report( DiagnosticsEngine::Warning, diff --git a/compilerplugins/clang/store/constantfunction.cxx b/compilerplugins/clang/store/constantfunction.cxx index 343cdc6ffc14..19c28df00db5 100644 --- a/compilerplugins/clang/store/constantfunction.cxx +++ b/compilerplugins/clang/store/constantfunction.cxx @@ -84,11 +84,6 @@ bool ConstantFunction::VisitFunctionDecl(const FunctionDecl * pFunctionDecl) { if (aFileName.startswith(SRCDIR "/basegfx/test/")) { return true; } - // some stuff is just stubs under Linux, although this appears to be a SOLARIS-specific hack, so it - // should probably not even be compiling under Linux. - if (aFileName == SRCDIR "/setup_native/scripts/source/getuid.c") { - return true; - } // bridges has some weird stuff in it.... if (aFileName.startswith(SRCDIR "/bridges/")) { return true; |