From 097078f27b2f5c003260e61c57bf1a10dbc9022c Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Mon, 27 Feb 2017 19:50:40 +0330 Subject: added inclusion guard --- mutator-lvl0.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mutator-lvl0.h b/mutator-lvl0.h index aab0fa1..334d893 100644 --- a/mutator-lvl0.h +++ b/mutator-lvl0.h @@ -19,6 +19,10 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.*/ /*code structure inspired by Eli Bendersky's tutorial on Rewriters.*/ /**********************************************************************************************************************/ +/*inclusion guard*/ +#ifndef MUTATOR_0_H +#define MUTATOR_0_H +/**********************************************************************************************************************/ /*included modules*/ /*project headers*/ /*standard library headers*/ @@ -322,5 +326,7 @@ std::multimap MC1EquivalencyMap = { std::multimap MC3EquivalencyMap; /**********************************************************************************************************************/ +#endif +/**********************************************************************************************************************/ /*last line intentionally left blank*/ -- cgit v1.2.3