From bc63e4be7240a6317041cc0881a80276f0049d20 Mon Sep 17 00:00:00 2001 From: mrbesen Date: Thu, 4 May 2023 20:13:07 +0200 Subject: [PATCH] windows compat --- include/restclient.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/restclient.h b/include/restclient.h index ae68e4c..b844a56 100644 --- a/include/restclient.h +++ b/include/restclient.h @@ -4,6 +4,11 @@ #include #include +#ifdef Q_OS_WIN +#undef DELETE +#endif + + class RestClient { public: RestClient(const std::string& base);