From 1c65a5e68a85c7be2ca820520d6e0dc0c0cefe69 Mon Sep 17 00:00:00 2001 From: Serge Gautherie Date: Thu, 27 Aug 2020 18:50:39 +0200 Subject: [PATCH] [REGEXPL] Fix 'COMLPETION_H__INCLUDED_' typo clang-cl 10: '.../Completion.h(4,2): warning: 'COMLPETION_H__INCLUDED_' is used as a header guard here, followed by #define of a different macro [-Wheader-guard]' Addendum to bf1b057 (r1507). CORE-14306 --- modules/rosapps/applications/sysutils/regexpl/Completion.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rosapps/applications/sysutils/regexpl/Completion.h b/modules/rosapps/applications/sysutils/regexpl/Completion.h index 8df3026591e..4d056bfec14 100644 --- a/modules/rosapps/applications/sysutils/regexpl/Completion.h +++ b/modules/rosapps/applications/sysutils/regexpl/Completion.h @@ -1,7 +1,7 @@ // // Completion.h - declaration for completion related functions -#if !defined(COMLPETION_H__INCLUDED_) +#if !defined(COMPLETION_H__INCLUDED_) #define COMPLETION_H__INCLUDED_ typedef const TCHAR * (*ReplaceCompletionCallback)(unsigned __int64& rnIndex, const BOOL *pblnForward,