Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f88ad32

Browse files
committedSep 17, 2022
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

+1-3
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)
Please sign in to comment.