From 65c8c9fc3a801fc513577ceacc5989e9c89cc2aa Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Fri, 20 Dec 2024 13:43:41 +0100 Subject: [PATCH] Fix potential include guard collisions --- src/version.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/version.hpp b/src/version.hpp index 48a3aa4..0acd662 100644 --- a/src/version.hpp +++ b/src/version.hpp @@ -1,8 +1,8 @@ -#ifndef VERSION_H_ -#define VERSION_H_ +#ifndef libscterm_VERSION_H_ +#define libscterm_VERSION_H_ #include std::string libscterm_version(); -#endif // VERSION_H_ +#endif // libscterm_VERSION_H_