summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/inc/statement.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/core/inc/statement.hxx')
-rw-r--r--dbaccess/source/core/inc/statement.hxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/dbaccess/source/core/inc/statement.hxx b/dbaccess/source/core/inc/statement.hxx
index 2024bb0de81e..f437040682fb 100644
--- a/dbaccess/source/core/inc/statement.hxx
+++ b/dbaccess/source/core/inc/statement.hxx
@@ -16,8 +16,7 @@
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_DBACCESS_SOURCE_CORE_INC_STATEMENT_HXX
-#define INCLUDED_DBACCESS_SOURCE_CORE_INC_STATEMENT_HXX
+#pragma once
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/sdbc/XStatement.hpp>
@@ -71,8 +70,8 @@ public:
// css::uno::XInterface
virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
- virtual void SAL_CALL acquire() throw() override;
- virtual void SAL_CALL release() throw() override;
+ virtual void SAL_CALL acquire() noexcept override;
+ virtual void SAL_CALL release() noexcept override;
// OComponentHelper
virtual void SAL_CALL disposing() override;
@@ -177,6 +176,4 @@ private:
bool impl_ensureComposer_nothrow() const;
};
-#endif // INCLUDED_DBACCESS_SOURCE_CORE_INC_STATEMENT_HXX
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */