summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/tinycbor/src/cborinternal_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/tinycbor/src/cborinternal_p.h')
-rw-r--r--src/3rdparty/tinycbor/src/cborinternal_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/tinycbor/src/cborinternal_p.h b/src/3rdparty/tinycbor/src/cborinternal_p.h
index 9546e44d61..8d77f28466 100644
--- a/src/3rdparty/tinycbor/src/cborinternal_p.h
+++ b/src/3rdparty/tinycbor/src/cborinternal_p.h
@@ -92,8 +92,8 @@ enum {
static inline void copy_current_position(CborValue *dst, const CborValue *src)
{
- // This "if" is here for pedantry only: the two branches should perform
- // the same memory operation.
+ /* This "if" is here for pedantry only: the two branches should perform
+ * the same memory operation. */
if (src->parser->flags & CborParserFlag_ExternalSource)
dst->source.token = src->source.token;
else