diff options
Diffstat (limited to 'include/sax/fshelper.hxx')
-rw-r--r-- | include/sax/fshelper.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sax/fshelper.hxx b/include/sax/fshelper.hxx index 7876e48a6c6c..8169ce5ea166 100644 --- a/include/sax/fshelper.hxx +++ b/include/sax/fshelper.hxx @@ -30,7 +30,7 @@ namespace com { namespace sun { namespace star { namespace io { class XOutputStream; } } } } namespace sax_fastparser { class FastAttributeList; } -#define FSNS(namespc, element) ((namespc << 16) | element) +constexpr sal_Int32 FSNS(sal_Int32 namespc, sal_Int32 element) { return (namespc << 16) | element; } namespace sax_fastparser { |