From d299ddd2f27a437f0fc0cb49abdfd6dd8e3d94f8 Mon Sep 17 00:00:00 2001 From: B Stack Date: Tue, 2 Feb 2021 11:44:31 -0500 Subject: add upstream 11.6 --- zen/file_io.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'zen/file_io.h') diff --git a/zen/file_io.h b/zen/file_io.h index 4210cc57..a7385241 100644 --- a/zen/file_io.h +++ b/zen/file_io.h @@ -110,6 +110,8 @@ public: void write(const void* buffer, size_t bytesToWrite) { tmpFile_.write(buffer, bytesToWrite); } //throw FileError, X + FileOutput& refTempFile() { return tmpFile_; } + void commit() //throw FileError, X { tmpFile_.finalize(); //throw FileError, X -- cgit