Files
ppsspp/ext/native/thread/executor.cpp

12 lines
174 B
C++
Raw Normal View History

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