Add a missing include to the Linux plugin template (#68737)

The template uses strcmp (to check the received method), so should
include <cstring>
This commit is contained in:
stuartmorgan 2020-10-22 13:50:39 -07:00 committed by GitHub
parent 37470dfc0b
commit 3ff334d68d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,8 @@
#include <gtk/gtk.h>
#include <sys/utsname.h>
#include <cstring>
#define {{pluginClassCapitalSnakeCase}}(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), {{pluginClassSnakeCase}}_get_type(), \
{{pluginClass}}))