Provide a default constructor, e.g.,

struct Thing {
Thing() : value(123), title('a') {}

int value;
char title;
};