string: add missing #include to support uuid_t on Windows

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2023-10-18 08:14:28 +02:00
parent 983891ec41
commit 11e56f927f

View File

@ -16,10 +16,12 @@
#ifdef __APPLE__
#include <xlocale.h>
#endif
#ifndef _WIN32
#ifdef _WIN32
#include <rpcdce.h>
#else
#include <uuid/uuid.h>
#endif
#include <algorithm>
#include <algorithm>
#include <locale>
#include <memory>
#include <stdexcept>