ppsspp/ext/native/thread/executor.cpp
Florent Castelli e0ff68b3f6 c++11: Remove compat header base/functional.h
We want a proper C++11, not tr1. We don't target those compilers anyway.
2016-10-12 11:32:45 +02:00

12 lines
174 B
C++

#include "thread/executor.h"
#include <functional>
namespace threading {
void SameThreadExecutor::Run(std::function<void()> func) {
func();
}
} // namespace threading