From d7021c76c55d31ec1f8ccb46e808342f83c8b655 Mon Sep 17 00:00:00 2001 From: My Name <my-name@chromium.org> Date: Wed, 15 Jan 2025 22:38:13 +0100 Subject: [PATCH] Resolved compile errors --- nosh.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/nosh.cpp b/nosh.cpp index 912f292..ef4e7b6 100644 --- a/nosh.cpp +++ b/nosh.cpp @@ -53,12 +53,7 @@ const char VERSION[] = "0.3.2"; ///< Change version number here for the entire c #define STRLEN 100 ///< Max string length #define WIDTH 10 ///< Width between columns -char vault[STRLEN]; ///< Storing custom info; - -deque<std::string> commandHistory; -const int MAXHISTORY = 50; - -int numberOfHistories = 0; ///< Storing the number of histories +char vault[STRLEN]; ///< Storing custom info namespace fs = std::filesystem; -- GitLab