diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-05-04 13:06:12 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-05-04 13:06:12 +0200 |
commit | f7b2782e24c7b67dc127cb0a453901c3fc0a1fb7 (patch) | |
tree | 45f762073a54b387b07816a32d48492f3205c79f /include/com | |
parent | 2894df68fee2eff2ce960dfeebc6b263ccae645f (diff) |
Fix Windows-only code
Change-Id: Iaf6d668f65e31c60dba8140d789f6578ef461264
Diffstat (limited to 'include/com')
-rw-r--r-- | include/com/sun/star/uno/Any.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/com/sun/star/uno/Any.h b/include/com/sun/star/uno/Any.h index 26127f4add37..0eb9c68debc6 100644 --- a/include/com/sun/star/uno/Any.h +++ b/include/com/sun/star/uno/Any.h @@ -227,7 +227,7 @@ public: void setValue(sal_Bool const *, Type const &) = delete; void setValue(sal_Bool const *, typelib_TypeDescriptionReference *) = delete; - void setValue(sal_Bool const *, typelib_TypeDescription *) = delete; + // void setValue(sal_Bool const *, typelib_TypeDescription *) = delete; void setValue(std::nullptr_t, Type const & type) { setValue(static_cast<void *>(nullptr), type); } void setValue(std::nullptr_t, typelib_TypeDescriptionReference * type) |