summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormostafa-elsharnoby <mostafaelsharnobi@gmail.com>2022-03-28 01:44:03 -0400
committerIlmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>2022-03-30 07:59:32 +0200
commitc03b09e502bf178ae3b6752408e4f9813d4a49a8 (patch)
tree5a5d1b027eb5d423b8ae448e8adef743466b593c
parenta3988b2d147a2442b348d58b79dbd6e71472b7af (diff)
tdf#143148: Use pragma once instead of include guards
Change-Id: Iad31b4d3d22519059d340a02868080c829ce7b98 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132158 Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
-rw-r--r--include/connectivity/BlobHelper.hxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/connectivity/BlobHelper.hxx b/include/connectivity/BlobHelper.hxx
index 8a99eb30b948..95b5892dc006 100644
--- a/include/connectivity/BlobHelper.hxx
+++ b/include/connectivity/BlobHelper.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_CONNECTIVITY_BLOBHELPER_HXX
-#define INCLUDED_CONNECTIVITY_BLOBHELPER_HXX
+#pragma once
#include <connectivity/dbtoolsdllapi.hxx>
#include <com/sun/star/sdbc/XBlob.hpp>
@@ -39,6 +38,4 @@ namespace connectivity
};
}
-#endif // INCLUDED_CONNECTIVITY_BLOBHELPER_HXX
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */