Use of reserved names
jwakely opened this issue · 3 comments
jwakely commented
Line 73 in 3dc846c
The names __i and __f make this code invalid C++, because those names use a form that is reserved for the C++ implementation to use.
See https://en.cppreference.com/w/cpp/language/identifiers#In_declarations
viewizard commented
Agree, two underscores usage as name prefix was bad idea (don't even remember now, why I used it, since I know that two underscores prefix is reserved for the compiler's internal use...). Will change this names, thanks!
viewizard commented
Fixed in upstream.
jwakely commented
Nice, thanks!