json: Use not C++ style comments // but C-style comments /* */
Change-Id: I8274d445fc84fce6b0f8f4fd1e57894f54fccfd1 Signed-off-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-on: https://review.gerrithub.io/431081 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Pawel Wodkowski <pawelx.wodkowski@intel.com>
This commit is contained in:
parent
bf9dbb9f3b
commit
d35ee09edf
@ -177,7 +177,7 @@ emit_indent(struct spdk_json_write_ctx *w)
|
|||||||
static int
|
static int
|
||||||
begin_value(struct spdk_json_write_ctx *w)
|
begin_value(struct spdk_json_write_ctx *w)
|
||||||
{
|
{
|
||||||
// TODO: check for value state
|
/* TODO: check for value state */
|
||||||
if (w->new_indent) {
|
if (w->new_indent) {
|
||||||
if (emit_fmt(w, "\n", 1)) { return fail(w); }
|
if (emit_fmt(w, "\n", 1)) { return fail(w); }
|
||||||
if (emit_indent(w)) { return fail(w); }
|
if (emit_indent(w)) { return fail(w); }
|
||||||
@ -561,7 +561,7 @@ spdk_json_write_val(struct spdk_json_write_ctx *w, const struct spdk_json_val *v
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Loop up to and including the _END value
|
/* Loop up to and including the _END value */
|
||||||
for (i = 0; i < num_values + 1;) {
|
for (i = 0; i < num_values + 1;) {
|
||||||
if (spdk_json_write_val(w, &val[i + 1])) {
|
if (spdk_json_write_val(w, &val[i + 1])) {
|
||||||
return fail(w);
|
return fail(w);
|
||||||
@ -582,7 +582,7 @@ spdk_json_write_val(struct spdk_json_write_ctx *w, const struct spdk_json_val *v
|
|||||||
return spdk_json_write_object_end(w);
|
return spdk_json_write_object_end(w);
|
||||||
|
|
||||||
case SPDK_JSON_VAL_INVALID:
|
case SPDK_JSON_VAL_INVALID:
|
||||||
// Handle INVALID to make the compiler happy (and catch other unhandled types)
|
/* Handle INVALID to make the compiler happy (and catch other unhandled types) */
|
||||||
return fail(w);
|
return fail(w);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user