You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1004 B
26 lines
1004 B
From 9fc5c84f0e5ba6266df3057c80af8279e03b7c04 Mon Sep 17 00:00:00 2001
|
|
From: Markus Mohrhard <markus.mohrhard@googlemail.com>
|
|
Date: Mon, 19 Sep 2016 21:04:02 +0200
|
|
Subject: [PATCH] -Wtautological-compare, compare against the 'other' parameter
|
|
|
|
---
|
|
src/parser/json_parser_thread.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/parser/json_parser_thread.cpp b/src/parser/json_parser_thread.cpp
|
|
index 6f4dd2d3..5e3515e8 100644
|
|
--- a/src/parser/json_parser_thread.cpp
|
|
+++ b/src/parser/json_parser_thread.cpp
|
|
@@ -77,7 +77,7 @@ bool parse_token::operator== (const parse_token& other) const
|
|
case parse_token_t::parse_error:
|
|
if (pstring(error_value.p, error_value.len) != pstring(other.error_value.p, other.error_value.len))
|
|
return false;
|
|
- if (error_value.offset != error_value.offset)
|
|
+ if (error_value.offset != other.error_value.offset)
|
|
return false;
|
|
break;
|
|
default:
|
|
--
|
|
2.14.1
|
|
|