I’m having some trouble overloading methods in C++.
typedef char int8_t; class SomeClass{ public: … void Method(int8_t paramater); void Method(char paramater
Use a faux type. Wrap one of char or int8_t in a structure and use the structure as a parameter.
char
int8_t