mirror of https://github.com/axmolengine/axmol.git
Add missing <functional> header which the standard requires and will be necessary to use std::function in VS2019. (#18989)
This commit is contained in:
parent
b170daf9d8
commit
6a52b3ff4a
|
@ -29,10 +29,11 @@
|
|||
|
||||
#if CC_TARGET_PLATFORM == CC_PLATFORM_WIN32
|
||||
|
||||
#include <string>
|
||||
#include <mutex>
|
||||
#include <vector>
|
||||
#include <functional>
|
||||
#include <memory>
|
||||
#include <mutex>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#ifdef OPENAL_PLAIN_INCLUDES
|
||||
#include <al.h>
|
||||
#else
|
||||
|
|
|
@ -29,9 +29,10 @@
|
|||
|
||||
#if CC_TARGET_PLATFORM == CC_PLATFORM_WIN32
|
||||
|
||||
#include <string>
|
||||
#include <condition_variable>
|
||||
#include <functional>
|
||||
#include <mutex>
|
||||
#include <string>
|
||||
#include <thread>
|
||||
#ifdef OPENAL_PLAIN_INCLUDES
|
||||
#include <al.h>
|
||||
|
|
Loading…
Reference in New Issue