summaryrefslogtreecommitdiff
path: root/include/unoidl
diff options
context:
space:
mode:
Diffstat (limited to 'include/unoidl')
-rw-r--r--include/unoidl/unoidl.hxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/unoidl/unoidl.hxx b/include/unoidl/unoidl.hxx
index 711b220f7e0a..9450ebf83bf0 100644
--- a/include/unoidl/unoidl.hxx
+++ b/include/unoidl/unoidl.hxx
@@ -15,6 +15,7 @@
#include <cassert>
#include <vector>
+#include <config_clang.h>
#include <osl/mutex.hxx>
#include <rtl/ref.hxx>
#include <rtl/ustring.hxx>
@@ -504,7 +505,11 @@ public:
bool const rest;
};
- Constructor(): defaultConstructor(true) {}
+ Constructor(): defaultConstructor(true)
+#if defined __clang__ && CLANG_VERSION == 30800
+ , annotations()
+#endif
+ {}
Constructor(
rtl::OUString const & theName,