Update Flush return.

This commit is contained in:
Kyle Isom 2023-10-14 23:47:37 -07:00
parent a00d358b15
commit 467bb064c7
1 changed files with 3 additions and 3 deletions

View File

@ -26,11 +26,11 @@ public:
Buffer::FileStatus Refresh();
/// Flush will attempt to write the active buffer.
bool Flush();
Buffer::FileStatus Flush();
private:
std::map<std::string, Buffer *> bmap;
std::string activeBuffer;
std::map<std::string, Buffer *> bmap;
std::string activeBuffer;
};