diff options
author | Burak Bala <burak.bala@ogr.sakarya.edu.tr> | 2020-01-25 16:35:42 +0300 |
---|---|---|
committer | Muhammet Kara <muhammet.kara@collabora.com> | 2020-01-26 20:47:13 +0100 |
commit | 47c598260a8f07cf3a1e4cab061df3f2d261932c (patch) | |
tree | be7a3b61fcc01beba71a4bcc542ed62b7459e1b7 /package | |
parent | e337f5b20430e52ef99923a475d05a1191506d21 (diff) |
tdf#124176: Use pragma once instead of include guards
Change-Id: Ib2465f040f12413560b2cec1c742cf3558461309
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87404
Tested-by: Jenkins
Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/inc/ZipEnumeration.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/package/inc/ZipEnumeration.hxx b/package/inc/ZipEnumeration.hxx index 07e8a5848617..cc4156a0ee52 100644 --- a/package/inc/ZipEnumeration.hxx +++ b/package/inc/ZipEnumeration.hxx @@ -16,8 +16,8 @@ * 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_PACKAGE_INC_ZIPENUMERATION_HXX -#define INCLUDED_PACKAGE_INC_ZIPENUMERATION_HXX + +#pragma once #include "HashMaps.hxx" @@ -31,6 +31,5 @@ public: ZipEnumeration( EntryHash &rNewEntryHash ); ~ZipEnumeration(); }; -#endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |