Unverified Commit 3ff334d6 authored by stuartmorgan's avatar stuartmorgan Committed by GitHub

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

The template uses strcmp (to check the received method), so should
include <cstring>
parent 37470dfc
...@@ -4,6 +4,8 @@ ...@@ -4,6 +4,8 @@
#include <gtk/gtk.h> #include <gtk/gtk.h>
#include <sys/utsname.h> #include <sys/utsname.h>
#include <cstring>
#define {{pluginClassCapitalSnakeCase}}(obj) \ #define {{pluginClassCapitalSnakeCase}}(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), {{pluginClassSnakeCase}}_get_type(), \ (G_TYPE_CHECK_INSTANCE_CAST((obj), {{pluginClassSnakeCase}}_get_type(), \
{{pluginClass}})) {{pluginClass}}))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment