Skip to content

Commit 07c5625

Browse files
committed
Plugin template - fix method specifiers
1 parent 625b73a commit 07c5625

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

process/create_plugin.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ struct RecordExt${PLUGIN_UPPER} : public RecordExt {
7878
}
7979
8080
#ifdef WITH_NEMEA
81-
virtual void fill_unirec(ur_template_t *tmplt, void *record)
81+
void fill_unirec(ur_template_t *tmplt, void *record) override
8282
{
8383
}
8484
@@ -88,7 +88,7 @@ struct RecordExt${PLUGIN_UPPER} : public RecordExt {
8888
}
8989
#endif
9090
91-
virtual int fill_ipfix(uint8_t *buffer, int size)
91+
int fill_ipfix(uint8_t *buffer, int size) override
9292
{
9393
return 0;
9494
}

0 commit comments

Comments
 (0)