You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
389 B
19 lines
389 B
#pragma once
|
|
|
|
#include <ctime>
|
|
#include <type_traits>
|
|
#include <string>
|
|
|
|
#if ((defined(_MSVC_LANG) && _MSVC_LANG >= 201703L) || __cplusplus >= 201703L)
|
|
constexpr static bool cpp_17 = true;
|
|
#else
|
|
constexpr static bool cpp_17 = false;
|
|
#endif
|
|
|
|
template <class T>
|
|
inline const char* str([[maybe_unused]] const T& v) {
|
|
return "";
|
|
}
|
|
|
|
extern std::string base62uuid(int l = 6);
|