win32ipcutils: Add missing include

We are using std::isspace() with one parameter. That function is defined
in the cctype header.

```
win32ipcutils.cpp(34): error C2672: 'std::isspace': no matching overloaded function found
win32ipcutils.cpp(34): error C2780: 'bool std::isspace(_Elem,const std::locale &)': expects 2 arguments - 1 provided
```

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3933>
This commit is contained in:
Alessandro Bono 2023-02-10 12:52:17 +01:00 committed by GStreamer Marge Bot
parent 7997b27247
commit fcd983440e

View file

@ -23,6 +23,7 @@
*/
#include "win32ipcutils.h"
#include <cctype>
#include <string>
#include <locale>
#include <codecvt>