From dfd807f3a491dbcb386ff4b7a9b6bfe2bd7fc6c6 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 18 Jun 2018 10:55:40 -0700 Subject: Revert "Use an std::set instead of an std::list to store the the journal file paths" This reverts commit 3364850cc7cf73fc67af1ea6cd9a65a32e336623. Fixes #559 --- src/session.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/session.h') diff --git a/src/session.h b/src/session.h index 47732a3d..4dce3816 100644 --- a/src/session.h +++ b/src/session.h @@ -153,14 +153,14 @@ public: OPTION__ (session_t, file_, // -f - std::set data_files; + std::list data_files; CTOR(session_t, file_) {} DO_(str) { if (parent->flush_on_next_data_file) { data_files.clear(); parent->flush_on_next_data_file = false; } - data_files.insert(str); + data_files.push_back(str); }); OPTION_(session_t, input_date_format_, DO_(str) { -- cgit v1.2.3