changing {} style to match majority of previous style

This commit is contained in:
Philippe Teuwen 2019-03-10 11:20:22 +01:00
commit 961d929f4d
320 changed files with 5502 additions and 10485 deletions

View file

@ -47,8 +47,7 @@ enum CborToJsonFlags {
};
CBOR_API CborError cbor_value_to_json_advance(FILE *out, CborValue *value, int flags);
CBOR_INLINE_API CborError cbor_value_to_json(FILE *out, const CborValue *value, int flags)
{
CBOR_INLINE_API CborError cbor_value_to_json(FILE *out, const CborValue *value, int flags) {
CborValue copy = *value;
return cbor_value_to_json_advance(out, &copy, flags);
}