light/modules/lsd/thread.cppm
light7734 b7ae2f7048
Some checks reported errors
continuous-integration/drone/push Build was killed
wip: feat: lsd
2025-11-16 14:29:03 +03:30

13 lines
215 B
C++

export module lsd.thread;
import std;
export namespace lt::lsd {
using thread_id = std::thread::id;
[[nodiscard]] auto this_thread_id() -> thread_id
{
return std::this_thread::get_id();
}
} // namespace lt::sd