From d25275642d2f682206f9ae6578e49a2d3fed4fc3 Mon Sep 17 00:00:00 2001 From: Eric-Butcher Date: Fri, 11 Jul 2025 13:26:04 -0400 Subject: [PATCH] Added header guard to program_runner.hpp. --- include/program_runner.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/program_runner.hpp b/include/program_runner.hpp index 563a73c..269facf 100644 --- a/include/program_runner.hpp +++ b/include/program_runner.hpp @@ -1,3 +1,6 @@ +#ifndef PROGRAM_RUNNER_H +#define PROGRAM_RUNNER_H + #include #include #include @@ -131,4 +134,6 @@ class ProgramRunner { -}; \ No newline at end of file +}; + +#endif