From e1121251747afa7b881136c123149530251346bf Mon Sep 17 00:00:00 2001 From: Jan Travnicek <jan.travnicek@.fit.cvut.cz> Date: Mon, 1 Apr 2019 16:05:33 +0200 Subject: [PATCH] fix header guards --- alib2algo/src/regexp/simplify/RegExpOptimize.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/alib2algo/src/regexp/simplify/RegExpOptimize.h b/alib2algo/src/regexp/simplify/RegExpOptimize.h index 414c8894c0..decca8a8c9 100644 --- a/alib2algo/src/regexp/simplify/RegExpOptimize.h +++ b/alib2algo/src/regexp/simplify/RegExpOptimize.h @@ -5,8 +5,8 @@ * Author: Tomas Pecka */ -#ifndef REGEXPOPTIMIZE_H_ -#define REGEXPOPTIMIZE_H_ +#ifndef _REG_EXP_OPTIMIZE_H__ +#define _REG_EXP_OPTIMIZE_H__ #include <alib/algorithm> #include <alib/iterator> @@ -222,4 +222,4 @@ UnboundedRegExpStructure < SymbolType > RegExpOptimize::optimize( const Unbounde #include "RegExpOptimizeUnboundedPart.hpp" #include "RegExpOptimizeFormalPart.hpp" -#endif /* REGEXPNORMALIZE_H_ */ +#endif /* _REG_EXP_OPTIMIZE_H__ */ -- GitLab