Skip to content

Commit f88ad32

Browse files
committed
remove mention of IMPLOT_INSTANTIATE_ALL_NUMERIC_TYPES in implot_items.cpp
1 parent 4ba42f2 commit f88ad32

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

implot_items.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,7 @@ static IMPLOT_INLINE float ImInvSqrt(float x) { return 1.0f / sqrtf(x); }
8181
// unsigned long long ImU64; // 64-bit unsigned integer
8282
// (note: this list does *not* include `long`, `unsigned long` and `long double`)
8383
//
84-
// You can customize the supported types in two ways:
85-
// 1. Define IMPLOT_INSTANTIATE_ALL_NUMERIC_TYPES at compile time to add support for all known types.
86-
// 2. Or, define IMPLOT_CUSTOM_NUMERIC_TYPES at compile time to define your own type list.
84+
// You can customize the supported types by defining IMPLOT_CUSTOM_NUMERIC_TYPES at compile time to define your own type list.
8785
// As an example, you could use the compile time define given by the line below in order to support only float and double.
8886
// -DIMPLOT_CUSTOM_NUMERIC_TYPES="(float)(double)"
8987
// In order to support all known C++ types, use:

0 commit comments

Comments
 (0)