mirror of
https://github.com/Ed94/gencpp.git
synced 2025-06-14 18:51:47 -07:00
More fixes while completing sanity check for enums
Typepunning failed, didn't know about the difference between C/C++ with strict aliasing in this specific case...
This commit is contained in:
@ -4,9 +4,16 @@ class Test_EmptyClass;
|
||||
class Test_EmptyClass
|
||||
{
|
||||
// Empty class
|
||||
|
||||
};
|
||||
|
||||
|
||||
UFUNCTION( BlueprintCallable, Category = "Test" )
|
||||
void Test_UFunction(void);
|
||||
typedef unsigned char u8;
|
||||
|
||||
enum Test_Enum : u8;
|
||||
enum Test_Enum : u8
|
||||
{
|
||||
A,
|
||||
B,
|
||||
C,
|
||||
};
|
||||
|
Reference in New Issue
Block a user