Review fixes.

This commit is contained in:
Yuri Gorshenin 2017-06-20 18:39:18 +03:00 committed by Yuri Gorshenin
parent 51dec89959
commit 23c7d33cfc
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,7 @@
#include "generator/ugc_db.hpp"
#include "base/macros.hpp"
namespace generator
{
UGCDB::UGCDB(std::string const & /*path */)

View file

@ -1,6 +1,7 @@
#pragma once
#include "base/exception.hpp"
#include "base/macros.hpp"
#include <cstdint>
#include <string>
@ -19,6 +20,6 @@ class UGCDB
{
public:
UGCDB(std::string const & path);
bool Get(osm::Id const & id, std::vector<uint8_t> & blob);
WARN_UNUSED_RESULT bool Get(osm::Id const & id, std::vector<uint8_t> & blob);
};
} // namespace generator