From fe143399eae2b0fae0bfd964eebcf018eaa76013 Mon Sep 17 00:00:00 2001 From: Vadim Date: Tue, 24 Nov 2015 00:34:44 +0200 Subject: [PATCH] add include guard --- src/files.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/files.h b/src/files.h index dc6e635..32f6fd2 100644 --- a/src/files.h +++ b/src/files.h @@ -1,3 +1,5 @@ +#ifndef JUCI_FILES_H_ +#define JUCI_FILES_H_ #include #define JUCI_VERSION "0.9.6" @@ -373,4 +375,4 @@ const std::string snippetpy = " output=getSnippet(theWord) \n" " juci.replaceWord(output) \n"; - +#endif // JUCI_FILES_H_