diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-10-04 10:16:31 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-10-04 13:45:39 +0200 |
commit | 7f0bf6220bd69cf119878ebd1352b55a042b88ed (patch) | |
tree | 30590d14fbe352ddedb20ce3c916657939a64ebd /include/connectivity | |
parent | aed1870375cd2b718fcc5fe19cdc27b711747d9c (diff) |
Revert "check for unnecessary DLLPUBLIC annotations"
This reverts commit a599eeab786ecbe1b5b6509e3c792e5c1ba31248, plus follow-up
fa4431449d0306e8179f53a2a69c549800bd24bd "Avoid bogus loplugin:dllmacro
'unnecessary *DLLPUBLIC declaration ...'". See (abandoned)
<https://gerrit.libreoffice.org/#/c/42983/> "loplugin:dllmacro: Handle implicit
member functions" how this would have needed to be extended to give consistent
results across Linux and macOS, but then would have started to remove DLLPUBLIC
from entities that apparently need to at least have default type visibility on
macOS and started to make tests fail.
Diffstat (limited to 'include/connectivity')
-rw-r--r-- | include/connectivity/FValue.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/connectivity/FValue.hxx b/include/connectivity/FValue.hxx index 9fa8d09199e6..d2fbfd47e9ba 100644 --- a/include/connectivity/FValue.hxx +++ b/include/connectivity/FValue.hxx @@ -472,7 +472,7 @@ namespace connectivity /// TSetBound is a functor to set the bound value with e.q. for_each call - struct TSetBound + struct OOO_DLLPUBLIC_DBTOOLS TSetBound { bool m_bBound; TSetBound(bool _bBound) : m_bBound(_bBound){} @@ -482,7 +482,7 @@ namespace connectivity /// TSetBound is a functor to set the bound value with e.q. for_each call - struct TSetRefBound + struct OOO_DLLPUBLIC_DBTOOLS TSetRefBound { bool m_bBound; TSetRefBound(bool _bBound) : m_bBound(_bBound){} |