This commit is contained in:
Yuri Gorshenin 2015-02-13 14:00:34 +03:00 committed by Alex Zolotarev
parent 9cb0221908
commit 6d1053e827
3 changed files with 5 additions and 7 deletions

View file

@ -3,7 +3,7 @@
#include "../coding/file_writer.hpp"
#include "../base/assert.hpp"
#include "../base/scope_guard.hpp"
#include "../../std/string.hpp"
#include "../std/string.hpp"
#include "../defines.hpp"
namespace feature

View file

@ -20,9 +20,6 @@ namespace feature
class Builder
{
public:
Builder() = default;
~Builder() = default;
/// Adds offset to the end of the sequence of already
/// accumulated offsets. Note that offset must be strictly
/// greater than all previously added offsets.
@ -60,7 +57,6 @@ namespace feature
/// when it's not possible to load FeaturesOffsetsTable.
static unique_ptr<FeaturesOffsetsTable> Load(FilesMappingContainer const & container);
~FeaturesOffsetsTable() = default;
FeaturesOffsetsTable(FeaturesOffsetsTable const &) = delete;
FeaturesOffsetsTable const & operator=(FeaturesOffsetsTable const &) = delete;

View file

@ -1,13 +1,15 @@
#include "../../testing/testing.hpp"
#include "../features_offsets_table.hpp"
#include "../data_header.hpp"
#include "../features_vector.hpp"
#include "../../platform/platform.hpp"
#include "../../coding/file_container.hpp"
#include "../../base/scope_guard.hpp"
#include "../../std/bind.hpp"
#include "../../std/string.hpp"
#include "../../defines.hpp"
#include "../../platform/platform.hpp"
#include "../../testing/testing.hpp"
namespace feature
{