rttrorg / rttr

C++ Reflection Library
https://www.rttr.org
MIT License
3.17k stars 439 forks source link

Can handle function overloading #318

Closed straywriter closed 3 years ago

straywriter commented 3 years ago

I wonder if RTTR can handle function overloading, I didn't see that in the unit tests. For example:

struct test
{
void foo();
void foo(int a);
};

How should this situation be registered

straywriter commented 3 years ago

ok i find