Problem: A recent commit introduced a member variable named class in
the exarg structure, which conflicts with the C++ keyword
class. This causes compilation issues on Windows when VIM
is compiled with OLE enabled, as "if_ole.cpp" cannot compile
due to the keyword conflict.
Solution: Rename the member variable of exarg from class to cclass.
https://github.com/vim/vim/pull/19016
(3 files)
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
@yegappan requested changes on this pull request.
The precedence in other places is to use an abbreviation of the structure name as the prefix. So can you use the prefix "ea_" instead of just "c"?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.![]()
@Fuzzier pushed 1 commit.
—
View it on GitHub or unsubscribe.
You are receiving this because you are subscribed to this thread.![]()
The precedence in other places is to use an abbreviation of the structure name as the prefix. So can you use the prefix "ea_" instead of just "c"?
Renamed cclass to ea_class to match the naming convention.
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()