From 828653f0c77971c5ac3d164995c9675823904499 Mon Sep 17 00:00:00 2001 From: Jay Krell Date: Thu, 5 Dec 2019 01:19:24 -0800 Subject: [PATCH] Fix ifndef include guard in icall-decl.h. (mono/mono#18055) There was no clash so ok either way, but this is more like intended. Commit migrated from https://github.com/mono/mono/commit/5a5e092a53111153b50742f1d021da45c09288b3 --- src/mono/mono/metadata/icall-decl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mono/mono/metadata/icall-decl.h b/src/mono/mono/metadata/icall-decl.h index d9197fb..763dfb1 100644 --- a/src/mono/mono/metadata/icall-decl.h +++ b/src/mono/mono/metadata/icall-decl.h @@ -3,8 +3,8 @@ * Copyright 2018 Microsoft * Licensed under the MIT license. See LICENSE file in the project root for full license information. */ -#ifndef __MONO_METADATA_ICALL_H__ -#define __MONO_METADATA_ICALL_H__ +#ifndef __MONO_METADATA_ICALL_DECL_H__ +#define __MONO_METADATA_ICALL_DECL_H__ #include "appdomain-icalls.h" #include "class.h" @@ -237,4 +237,4 @@ ICALL_EXPORT MonoBoolean ves_icall_Mono_Security_Cryptography_KeyPairPersistence ICALL_EXPORT MonoBoolean ves_icall_Mono_Security_Cryptography_KeyPairPersistence_ProtectMachine (const gunichar2*); ICALL_EXPORT MonoBoolean ves_icall_Mono_Security_Cryptography_KeyPairPersistence_ProtectUser (const gunichar2*); -#endif // __MONO_METADATA_ICALL_H__ +#endif // __MONO_METADATA_ICALL_DECL_H__ -- 2.7.4