Files
ppsspp/ext/native/thread/executor.cpp
2015-09-06 12:24:17 -07:00

11 lines
180 B
C++

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