From 0344054a3463442027b6b2ae1b6a2f3e5bb30525 Mon Sep 17 00:00:00 2001 From: Matthew Ellison Date: Wed, 7 Nov 2018 18:12:33 -0500 Subject: [PATCH] Added include guard --- Stopwatch.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Stopwatch.hpp b/Stopwatch.hpp index 1649b76..2f28200 100644 --- a/Stopwatch.hpp +++ b/Stopwatch.hpp @@ -4,6 +4,8 @@ //Modified: 10-30-2018 //This file creates a class that can be used on many programs to time them +#ifndef STOPWATCH_HPP +#define STOPWATCH_HPP #include @@ -78,3 +80,5 @@ public: endTime = startTime = std::chrono::high_resolution_clock::time_point(); } }; + +#endif //end STOPWATCH_HPP