From 3f76dafbc1ead544afdd917ac587029c2cf571df Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Tue, 28 Oct 2025 18:02:45 -0700 Subject: [PATCH] (FIX): Renamed `watchDog` to `watchdog` --- lib/{watchDog.cpp => watchdog.cpp} | 2 +- lib/{watchDog.h => watchdog.h} | 0 src/main.cpp | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename lib/{watchDog.cpp => watchdog.cpp} (96%) rename lib/{watchDog.h => watchdog.h} (100%) diff --git a/lib/watchDog.cpp b/lib/watchdog.cpp similarity index 96% rename from lib/watchDog.cpp rename to lib/watchdog.cpp index d73adaa..85aa520 100644 --- a/lib/watchDog.cpp +++ b/lib/watchdog.cpp @@ -1,4 +1,4 @@ -#include "watchDog.h" +#include "watchdog.h" namespace fs = std::filesystem; // makes it easier to read diff --git a/lib/watchDog.h b/lib/watchdog.h similarity index 100% rename from lib/watchDog.h rename to lib/watchdog.h diff --git a/src/main.cpp b/src/main.cpp index ceeef67..c5e2626 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,7 +1,7 @@ #include "../lib/inlineNode.h" #include "../lib/parser.h" #include "../lib/structureNode.h" -#include "../lib/watchDog.h" +#include "../lib/watchdog.h" #include #include