7 lines
123 B
C++
7 lines
123 B
C++
|
#pragma once
|
||
|
|
||
|
#if __has_include(<jthread>)
|
||
|
#include <jthread>
|
||
|
#else
|
||
|
#include "../jthread/source/jthread.hpp"
|
||
|
#endif
|