xref: /llvm-project/clang/test/Headers/Inputs/include/algorithm (revision 713a5d12cde58a5dff90cc3e2d1e67c2a78fe52f)
1*713a5d12SPushpinder Singh#pragma once
2*713a5d12SPushpinder Singh
3*713a5d12SPushpinder Singhnamespace std {
4*713a5d12SPushpinder Singh template<class T> constexpr const T& min(const T& a, const T& b);
5*713a5d12SPushpinder Singh template<class T> constexpr const T& max(const T& a, const T& b);
6*713a5d12SPushpinder Singh}