From 467bb064c75e3785ee4ef584bcb6fd06c82322b4 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Sat, 14 Oct 2023 23:47:37 -0700 Subject: [PATCH] Update Flush return. --- Frame.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Frame.h b/Frame.h index 727097d..cba0e9e 100644 --- a/Frame.h +++ b/Frame.h @@ -26,11 +26,11 @@ public: Buffer::FileStatus Refresh(); /// Flush will attempt to write the active buffer. - bool Flush(); + Buffer::FileStatus Flush(); private: - std::map bmap; - std::string activeBuffer; + std::map bmap; + std::string activeBuffer; };