-
-
Notifications
You must be signed in to change notification settings - Fork 262
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
There is a small bug when casting is done with a class member. As an example:
class Simple
{
int p;
public:
double get() {return p;}
};
yields
class Simple
{
int p;
public:
double get() {return static_cast<double>(this->p)p;}
};
An additionnal p is added after the cast, making the resulting code uncompilable.
Other than that, it is a great project !
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working