mirror of
https://github.com/thomasxm/BOAZ_beta
synced 2026-06-06 16:54:29 +00:00
6 lines
165 B
Plaintext
6 lines
165 B
Plaintext
#pragma once
|
|
|
|
namespace std {
|
|
template<class T> constexpr const T& min(const T& a, const T& b);
|
|
template<class T> constexpr const T& max(const T& a, const T& b);
|
|
} |