- use std::clamp instead of our homegrown version.

This commit is contained in:
Christoph Oelckers 2021-10-30 10:35:00 +02:00
parent 059a99f7c8
commit 57b638f26f
10 changed files with 14 additions and 25 deletions

View file

@ -105,3 +105,4 @@ enum EStateUseFlags
using std::min;
using std::max;
using std::clamp;