diff options
author | bloodstalker <thabogre@gmail.com> | 2017-02-27 16:20:40 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-02-27 16:20:40 +0000 |
commit | 097078f27b2f5c003260e61c57bf1a10dbc9022c (patch) | |
tree | e14b941aeef1b49885c7f57823ae8a167a4d6e4f | |
parent | added the missing C1 option, with one more thing i'm trying. (diff) | |
download | mutator-097078f27b2f5c003260e61c57bf1a10dbc9022c.tar.gz mutator-097078f27b2f5c003260e61c57bf1a10dbc9022c.zip |
added inclusion guard
Diffstat (limited to '')
-rw-r--r-- | mutator-lvl0.h | 6 |
1 files changed, 6 insertions, 0 deletions
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<std::string,std::string> MC1EquivalencyMap = { std::multimap<std::string, std::string> MC3EquivalencyMap; /**********************************************************************************************************************/ +#endif +/**********************************************************************************************************************/ /*last line intentionally left blank*/ |