blob: 7353e915de011bbfa92001e97e501b34d98e76fa (
plain)
1
2
3
4
5
|
// Can't set sp_inside_braces_struct=add otherwise Uncrustify starts applying it to initializers combined with old-C-style struct usage.
struct in_addr addr = {0};
// ... --> ...
struct in_addr addr = { 0 };
|