diff options
author | am.faraji <am.faraji80@gmail.com> | 2022-07-09 22:21:55 +0430 |
---|---|---|
committer | Hossein <hossein@libreoffice.org> | 2022-07-10 21:52:47 +0200 |
commit | 5aad816758652e5a4112527cf477d84e72a724ba (patch) | |
tree | ef436871bcb2d76157fe923256579432294800ce /bridges | |
parent | e8388c9456dc1a7c753f4bc2a86473ced3be0830 (diff) |
tdf#143148 Use pragma once instead of include guards
Change-Id: I7bd02dba44a8bc62da660bcb7500960ef14172a1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136939
Tested-by: Hossein <hossein@libreoffice.org>
Reviewed-by: Hossein <hossein@libreoffice.org>
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_ios/rtti.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/bridges/source/cpp_uno/gcc3_ios/rtti.h b/bridges/source/cpp_uno/gcc3_ios/rtti.h index fd8ef3715082..88413ea27a18 100644 --- a/bridges/source/cpp_uno/gcc3_ios/rtti.h +++ b/bridges/source/cpp_uno/gcc3_ios/rtti.h @@ -25,8 +25,8 @@ // the GNU General Public License. // // Written by Nathan Sidwell, Codesourcery LLC, <nathan@codesourcery.com> -#ifndef __RTTI_H -#define __RTTI_H + +#pragma once #include <typeinfo> @@ -405,6 +405,3 @@ namespace __cxxabiv1 // User programs should use the alias `abi'. namespace abi = __cxxabiv1; - - -#endif // __RTTI_H |