Skip to content

Commit

Permalink
Remove superfluous semi-colon following CREATE_STATIC_PLUGIN (#1798)
Browse files Browse the repository at this point in the history
Fixes GCC 5.6.0 error: extra ‘;’ [-Werror=pedantic]
  • Loading branch information
mloskot authored and abellgithub committed Feb 1, 2018
1 parent d8bdced commit fa745a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/OGRWriterV1.cpp
Expand Up @@ -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)
Expand Down

0 comments on commit fa745a4

Please sign in to comment.