tidev / hyperloop.next

Hyperloop Next version (we forgot the version number at this point)
Other
7 stars 4 forks source link

fix: resolve elaborated types #381

Closed janvennemann closed 10 months ago

janvennemann commented 10 months ago

This fixes an issue with elaborated types which were not properly resolved to their named type.

Example for elaborated types:

class A {};

int main()
{
    class A a; // OK: equivalent to 'A a;'
}

Fixes #380

hansemannn commented 10 months ago

Thank you for the fix! A simple test case works already, but running hyperloop-examples still fails (it seems like an issue with Cocoapods though). I would say we merge this one already and check for possible Cocoapods issues in a separate effort.