From 6ceab8435d3b1323b21b9530bb7e729d622fa861 Mon Sep 17 00:00:00 2001 From: Konstantinos Margaritis Date: Sat, 9 Oct 2021 00:29:08 +0300 Subject: [PATCH] add header define to avoid double inclusion --- src/util/match.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/util/match.hpp b/src/util/match.hpp index 994dd9f8..9331d1f8 100644 --- a/src/util/match.hpp +++ b/src/util/match.hpp @@ -27,6 +27,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#ifndef MATCH_HPP +#define MATCH_HPP + #include "ue2common.h" #include "util/arch.h" #include "util/bitutils.h" @@ -46,3 +49,4 @@ const u8 *lastMatch(const u8 *buf, SuperVector v); #include "util/arch/arm/match.hpp" #endif +#endif // MATCH_HPP