Add missing include to syncqt/main.cpp

I got build-time errors for memcpy() not being declared, that
helpfully told me to #include <cstring> to get it.

Change-Id: I6ae9e881e5accf496e9c3694ca43701972d64722
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
This commit is contained in:
Edward Welbourne 2022-09-28 14:03:14 +02:00
parent 91374bb632
commit fdd1d54bc4

View File

@ -19,6 +19,7 @@
#include <iostream> #include <iostream>
#include <fstream> #include <fstream>
#include <string> #include <string>
#include <cstring>
#include <sstream> #include <sstream>
#include <filesystem> #include <filesystem>
#include <unordered_map> #include <unordered_map>