mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
17 lines
215 B
C++
17 lines
215 B
C++
export module uses_std;
|
|
|
|
import std;
|
|
|
|
#ifdef _WIN32
|
|
export __declspec(dllexport) int dummy()
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
export inline int use_chrono()
|
|
{
|
|
static_cast<void>(std::chrono::current_zone());
|
|
return 42;
|
|
}
|