viewizard/astromenace

Use of reserved names

jwakely opened this issue · 3 comments

__i{_i},

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

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!

Fixed in upstream.

Nice, thanks!