diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-08-24 11:01:51 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-08-24 12:42:25 +0100 |
commit | 715e2109f60b016f661d98a59aef674e0951a2ad (patch) | |
tree | 0d39ecd4f4c0d925288c56f6f7f1569b0a3d153d /xmlhelp/source | |
parent | 768d02c93c51fb606cf7221d0fd7a0c9dd3e363d (diff) |
Related: fdo#53337 Maybe this is a typeinfo visibility problem
Change-Id: I024de5b400d0f7a443d4cce7bfe4e88841e6049b
Diffstat (limited to 'xmlhelp/source')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx index cd361c8d727d..037bf8d0720b 100644 --- a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx +++ b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx @@ -40,7 +40,13 @@ #pragma warning(disable : 4068 4263 4264 4266) #endif +#if defined(__GNUC__) && defined(HAVE_GCC_VISIBILITY_FEATURE) +# pragma GCC visibility push (default) +#endif #include <CLucene.h> +#if defined(__GNUC__) && defined(HAVE_GCC_VISIBILITY_FEATURE) +# pragma GCC visibility pop +#endif #if defined _MSC_VER #pragma warning(pop) |