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