From fa745a4b07806ac57d72f29d49b6fda4b59db9ac Mon Sep 17 00:00:00 2001 From: Mateusz Loskot Date: Thu, 1 Feb 2018 14:47:23 +0100 Subject: [PATCH] Remove superfluous semi-colon following CREATE_STATIC_PLUGIN (#1798) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes GCC 5.6.0 error: extra ‘;’ [-Werror=pedantic] --- io/OGRWriterV1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/OGRWriterV1.cpp b/io/OGRWriterV1.cpp index 9af4cbc669..ec7ae58c11 100644 --- a/io/OGRWriterV1.cpp +++ b/io/OGRWriterV1.cpp @@ -58,7 +58,7 @@ static PluginInfo const s_info = PluginInfo( "http://pdal.io/stages/writers.ogr.html"); -CREATE_STATIC_PLUGIN(1, 0, OGRWriter, Writer, s_info); +CREATE_STATIC_PLUGIN(1, 0, OGRWriter, Writer, s_info) OGRWriter::OGRWriter() : m_driver(nullptr), m_ds(nullptr), m_layer(nullptr), m_feature(nullptr)