From ccc8aab451ba492dabe017a6f5078ac41d248fcb Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 29 Mar 2016 08:05:29 +0200 Subject: Avoid reserved identifier Change-Id: Icf8858590d0e1563acebc9d55fe6898ce7416dd5 --- pyuno/inc/pyuno/pyuno.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pyuno/inc') diff --git a/pyuno/inc/pyuno/pyuno.hxx b/pyuno/inc/pyuno/pyuno.hxx index 30a1bdba05a8..6e3a030b0790 100644 --- a/pyuno/inc/pyuno/pyuno.hxx +++ b/pyuno/inc/pyuno/pyuno.hxx @@ -68,7 +68,7 @@ extern "C" LO_DLLPUBLIC_PYUNO namespace pyuno { -enum __NotNull +enum NotNull { /** definition of a no acquire enum for ctors */ @@ -95,7 +95,7 @@ public: PyRef( PyObject * p, __sal_NoAcquire ) : m( p ) {} - PyRef( PyObject * p, __sal_NoAcquire, __NotNull ) : m( p ) + PyRef( PyObject * p, __sal_NoAcquire, NotNull ) : m( p ) { if (!m) throw std::bad_alloc(); -- cgit