From 9f8c1aa31ef6e9fe9a81de6a375003a052ee3ddd Mon Sep 17 00:00:00 2001 From: Remy Prechelt <prechelt@hawaii.edu> Date: Tue, 14 Jul 2020 13:20:00 -1000 Subject: [PATCH] Add missing include guard into CorsikaData.h --- Framework/Utilities/CorsikaData.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Framework/Utilities/CorsikaData.h b/Framework/Utilities/CorsikaData.h index c9ba0bac2..cf8d0e6f3 100644 --- a/Framework/Utilities/CorsikaData.h +++ b/Framework/Utilities/CorsikaData.h @@ -7,6 +7,8 @@ * Licence version 3 (GPL Version 3). See file LICENSE for a full version of * the license. */ +#ifndef CORSIKA_CORSIKADATA_H +#define CORSIKA_CORSIKADATA_H #include <string> @@ -16,3 +18,5 @@ namespace corsika::utl { */ std::string CorsikaData(std::string const& filename); } // namespace corsika::utl + +#endif // CORSIKA_CORSIKADATA_H -- GitLab