mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-21 04:38:39 +00:00
e0ff68b3f6
We want a proper C++11, not tr1. We don't target those compilers anyway.
12 lines
174 B
C++
12 lines
174 B
C++
#include "thread/executor.h"
|
|
|
|
#include <functional>
|
|
|
|
namespace threading {
|
|
|
|
void SameThreadExecutor::Run(std::function<void()> func) {
|
|
func();
|
|
}
|
|
|
|
} // namespace threading
|