1
0
Fork 0
mirror of https://github.com/gwm17/implot.git synced 2024-10-09 15:47:26 -04:00
This commit is contained in:
epezent 2020-08-17 16:26:48 -05:00
commit d7e3cc78ac

View File

@ -237,8 +237,8 @@ struct TransformerLogLog {
template <typename T>
struct MaxIdx { static const unsigned int Value; };
const unsigned int MaxIdx<unsigned short>::Value = 65535;
const unsigned int MaxIdx<unsigned int>::Value = 4294967295;
template <> const unsigned int MaxIdx<unsigned short>::Value = 65535;
template <> const unsigned int MaxIdx<unsigned int>::Value = 4294967295;
/// Renders primitive shapes in bulk as efficiently as possible.
template <typename Renderer>