cppu/source/typelib/static_types.cxx |    2 +-
 cppu/source/typelib/typelib.cxx      |    4 ++--
 cppu/source/uno/check.cxx            |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit cf1d55096a06ff4293046578d83735134a3014d6
Author:     Stephan Bergmann <sberg...@redhat.com>
AuthorDate: Tue Jun 30 19:07:19 2020 +0200
Commit:     Stephan Bergmann <sberg...@redhat.com>
CommitDate: Wed Jul 1 08:11:32 2020 +0200

    Upcoming improved loplugin:staticanonymous -> redundantstatic: cppu
    
    Change-Id: Iac1bd5cb1ff1a1786471b2d8b8a3c500a2e15c5c
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97546
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sberg...@redhat.com>

diff --git a/cppu/source/typelib/static_types.cxx 
b/cppu/source/typelib/static_types.cxx
index 6ff99b1f4ae0..d94f8485f801 100644
--- a/cppu/source/typelib/static_types.cxx
+++ b/cppu/source/typelib/static_types.cxx
@@ -68,7 +68,7 @@ struct AlignSize_Impl
 #endif
 
 // the value of the maximal alignment
-static const sal_Int32 nMaxAlignment = static_cast<sal_Int32>( 
reinterpret_cast<sal_Size>(&reinterpret_cast<AlignSize_Impl *>(16)->dDouble) - 
16);
+const sal_Int32 nMaxAlignment = static_cast<sal_Int32>( 
reinterpret_cast<sal_Size>(&reinterpret_cast<AlignSize_Impl *>(16)->dDouble) - 
16);
 
 static sal_Int32 adjustAlignment( sal_Int32 nRequestedAlignment )
 {
diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx
index e16c2eb90319..d9f445272510 100644
--- a/cppu/source/typelib/typelib.cxx
+++ b/cppu/source/typelib/typelib.cxx
@@ -75,7 +75,7 @@ struct AlignSize_Impl
 #endif
 
 // the value of the maximal alignment
-static const sal_Int32 nMaxAlignment = static_cast<sal_Int32>( 
reinterpret_cast<sal_Size>(&reinterpret_cast<AlignSize_Impl *>(16)->dDouble) - 
16);
+const sal_Int32 nMaxAlignment = static_cast<sal_Int32>( 
reinterpret_cast<sal_Size>(&reinterpret_cast<AlignSize_Impl *>(16)->dDouble) - 
16);
 
 static sal_Int32 adjustAlignment( sal_Int32 nRequestedAlignment )
 {
@@ -2355,7 +2355,7 @@ extern "C" void SAL_CALL typelib_setCacheSize( sal_Int32 
nNewSize )
 }
 
 
-static const bool s_aAssignableFromTab[11][11] =
+const bool s_aAssignableFromTab[11][11] =
 {
                           /* from CH,    BO,    BY,    SH,    US,    LO,    
UL,    HY,    UH,    FL,    DO */
 /* TypeClass_CHAR */            { true,  false, false, false, false, false, 
false, false, false, false, false },
diff --git a/cppu/source/uno/check.cxx b/cppu/source/uno/check.cxx
index 3dc0fc5aca0c..d1ce9bbc0c6f 100644
--- a/cppu/source/uno/check.cxx
+++ b/cppu/source/uno/check.cxx
@@ -311,7 +311,7 @@ BinaryCompatible_Impl::BinaryCompatible_Impl()
     assert(OFFSET_OF(Char4, c) == 3);
 }
 
-static BinaryCompatible_Impl aTest;
+BinaryCompatible_Impl aTest;
 
 #endif
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to