mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-23 23:34:46 +02:00
11 lines
180 B
C++
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
|