Added header for OS drawing and a double buffer.
This commit is contained in:
@@ -6,7 +6,17 @@
|
||||
|
||||
namespace std
|
||||
{
|
||||
template<typename T>
|
||||
constexpr const T& min(const T& left, const T& right)
|
||||
{
|
||||
return right < left ? right : left;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
constexpr const T& max(const T& left, const T& right)
|
||||
{
|
||||
return right > left ? right : left;
|
||||
}
|
||||
}
|
||||
|
||||
#endif // !defined(BAD_APPLE_OS_ALGORITHM_INCLUDED)
|
||||
|
||||
Reference in New Issue
Block a user