mirror of
https://github.com/gwm17/implot.git
synced 2024-11-23 10:48:52 -05:00
fixed template specialization on GCC
This commit is contained in:
parent
bd4036fbff
commit
632808ca4c
|
@ -244,8 +244,8 @@ struct TransformerLogLog {
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct MaxIdx { static const unsigned int Value; };
|
struct MaxIdx { static const unsigned int Value; };
|
||||||
const unsigned int MaxIdx<unsigned short>::Value = 65535;
|
template <> const unsigned int MaxIdx<unsigned short>::Value = 65535;
|
||||||
const unsigned int MaxIdx<unsigned int>::Value = 4294967295;
|
template <> const unsigned int MaxIdx<unsigned int>::Value = 4294967295;
|
||||||
|
|
||||||
/// Renders primitive shapes in bulk as efficiently as possible.
|
/// Renders primitive shapes in bulk as efficiently as possible.
|
||||||
template <typename Renderer>
|
template <typename Renderer>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user