Kaydet (Commit) 52cd5ccc authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1209760 Parse warning

Change-Id: I380cae18964ee6ed7d8ef87d9ae861cc7b34c376
üst 785ad9bd
......@@ -23,9 +23,9 @@
#include "sal_allheaders.hxx"
CPPUNIT_PLUGIN_IMPLEMENT();
extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL firstfunc( sal_Bool bRes )
extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL firstfunc( sal_Bool )
{
return ( bRes = sal_True );
return sal_True;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -27,9 +27,9 @@
// But we instatiate a test plugin to fake the build process.
CPPUNIT_PLUGIN_IMPLEMENT();
extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL firstfunc( sal_Bool bRes )
extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL firstfunc( sal_Bool )
{
return ( bRes = sal_True );
return sal_True;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment