I\'m trying to find a convenient way to initialise \'pod\' C++ structs. Now, consider the following struct:
struct FooBar { int foo; float bar; }; // jus
Many compilers' C++ frontends (including GCC and clang) understand C initializer syntax. If you can, simply use that method.