Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2019-08-12 12:59:45 +0300
committerMaksim Andrianov <maksimandrianov1@gmail.com>2019-08-12 13:01:40 +0300
commitd162b877e8f2d4ec9703638eacc7cbd9bec082c9 (patch)
tree86d52a2dbbcb87d575f5f1c067dea2be4b3e7865 /coding/file_container.cpp
parentd2b1fc8d3048fb72be01d352aaa9c64fc73bbeea (diff)
[coding] fixes related to file container writers refactoring.
Diffstat (limited to 'coding/file_container.cpp')
-rw-r--r--coding/file_container.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/coding/file_container.cpp b/coding/file_container.cpp
index 434d9c7c80..ac2e764a28 100644
--- a/coding/file_container.cpp
+++ b/coding/file_container.cpp
@@ -1,6 +1,5 @@
#include "coding/file_container.hpp"
-#include "coding/file_container_writers.hpp"
#include "coding/internal/file_data.hpp"
#include "coding/read_write_utils.hpp"
#include "coding/varint.hpp"
@@ -386,7 +385,7 @@ void FilesContainerW::DeleteSection(Tag const & tag)
Open(FileWriter::OP_WRITE_EXISTING);
}
-std::unique_ptr<FileWriter> FilesContainerW::GetWriter(Tag const & tag)
+std::unique_ptr<FileContainerWriter> FilesContainerW::GetWriter(Tag const & tag)
{
ASSERT(!m_finished, ());