forked from organicmaps/organicmaps
Fix build error on Ubuntu 20.04/g++ 9.4.0
Signed-off-by: Jeroen Hoek <mail@jeroenhoek.nl>
This commit is contained in:
parent
45a35d0854
commit
377cf0f348
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ static_assert(std::is_trivially_copyable<LatLonPos>::value, "");
|
|||
class PointStorageWriterInterface
|
||||
{
|
||||
public:
|
||||
virtual ~PointStorageWriterInterface() noexcept(false) = default;
|
||||
virtual ~PointStorageWriterInterface() noexcept(false) {};
|
||||
virtual void AddPoint(uint64_t id, double lat, double lon) = 0;
|
||||
virtual uint64_t GetNumProcessedPoints() const = 0;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue