Andy
2018-10-19 10:50:57 UTC
I've been updating some of my code from "typedef" to "using" style:
typedef int foo;
using foo = int;
When I try it with structs though the formatting gets all messed up in
Creator:
using FooInfo = struct
{
QString name;
QString code;
};
Do I have something set incorrectly or is it just a bug?
---
Andy Maloney // https://asmaloney.com
twitter ~ @asmaloney <https://twitter.com/asmaloney>
typedef int foo;
using foo = int;
When I try it with structs though the formatting gets all messed up in
Creator:
using FooInfo = struct
{
QString name;
QString code;
};
Do I have something set incorrectly or is it just a bug?
---
Andy Maloney // https://asmaloney.com
twitter ~ @asmaloney <https://twitter.com/asmaloney>