You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C++11 introduced a new syntax to mark types as friends, friend foo instead of friend class foo.
When parsing friend foo it will be treated as if friend class foo was written.
But when parsing friend ns::foo, it will be detected properly.
The text was updated successfully, but these errors were encountered:
libclang_parser
C++11 introduced a new syntax to mark types as friends,
friend foo
instead offriend class foo
.When parsing
friend foo
it will be treated as iffriend class foo
was written.But when parsing
friend ns::foo
, it will be detected properly.The text was updated successfully, but these errors were encountered: