Fix build error on Ubuntu 20.04/g++ 9.4.0

Signed-off-by: Jeroen Hoek <mail@jeroenhoek.nl>
This commit is contained in:
Jeroen Hoek 2022-06-05 15:18:14 +02:00 committed by Viktor Govako
parent 45a35d0854
commit 377cf0f348

View file

@ -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;
};