mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +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/3936>
This commit is contained in:
parent
cbcd2a44ff
commit
b87371d0ce
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