godot-cpp/src
Andy Maloney db2394dbe7 Identifiers containing double underscore are reserved according to the C++ standard
Rename __* to _gde_*

https://timsong-cpp.github.io/cppwp/n3337/global.names

https://en.cppreference.com/w/cpp/language/identifiers

Identifiers appearing as a token or preprocessing token (i.e., not in user-defined-string-literal like operator ""id) (since C++11) of one of the following forms are reserved:
 - identifiers with a double underscore anywhere;
 - identifiers that begin with an underscore followed by an uppercase letter;
 - in the global namespace, identifiers that begin with an underscore.
2023-06-15 20:45:01 -04:00
..
classes Update to load function pointers for GDExtension interface 2023-05-09 21:45:48 -05:00
core Identifiers containing double underscore are reserved according to the C++ standard 2023-06-15 20:45:01 -04:00
variant Ensure GDExtension class is the correct type for the Godot engine class 2023-05-16 15:18:48 -05:00
godot.cpp Merge pull request #1137 from dsnopek/no-more-legacy-mode 2023-06-08 10:11:29 -05:00