diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-29 08:05:29 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-29 08:05:29 +0200 |
commit | ccc8aab451ba492dabe017a6f5078ac41d248fcb (patch) | |
tree | af3dc4954306b60e66d793835d1335d8bc2eb0ed /pyuno | |
parent | 7d67fbd94dccc6ab48045fdae6e0f2db67ae10f3 (diff) |
Avoid reserved identifier
Change-Id: Icf8858590d0e1563acebc9d55fe6898ce7416dd5
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/inc/pyuno/pyuno.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
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(); |