From fa1cb59697fca607cbb0bdc21786fdfba2cb6648 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Wed, 18 Oct 2023 16:21:09 -0700 Subject: [PATCH] Add missing include header. This was being included transitively. --- Commander.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Commander.h b/Commander.h index f7f786a..7a9aa55 100644 --- a/Commander.h +++ b/Commander.h @@ -28,6 +28,7 @@ /// PERFORMANCE OF THIS SOFTWARE. /// +#include #include #include #include @@ -51,7 +52,7 @@ using CommanderFunc = std::function; class Subcommand { public: /// Status describes the results of running a Subcommand. - enum class Status : std::uint8_t { + enum class Status : int8_t { /// The subcommand executed correctly. OK = 0, /// Not enough arguments were supplied to the subcommand.