mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
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:
parent
7997b27247
commit
fcd983440e
1 changed files with 1 additions and 0 deletions
|
@ -23,6 +23,7 @@
|
|||
*/
|
||||
|
||||
#include "win32ipcutils.h"
|
||||
#include <cctype>
|
||||
#include <string>
|
||||
#include <locale>
|
||||
#include <codecvt>
|
||||
|
|
Loading…
Reference in a new issue