From f2b431f80a4e5045a23773a8e329ee94e7fe9534 Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Sun, 22 Jan 2017 16:48:23 +0100 Subject: [PATCH] Rename the include guard The include guard caused a warning with newer versions of Clang. --- trycatch.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trycatch.h b/trycatch.h index 1ce82ae..9a7ce89 100644 --- a/trycatch.h +++ b/trycatch.h @@ -25,8 +25,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef __TRYCATCH_H__ -#define __TRYCATCH_H__ +#ifndef TRYCATCH_H_INCLUDED +#define TRYCATCH_H_INCLUDED #include #include