Skip to content

Commit ff955e9

Browse files
committed
Fix merge-introduced conflict.
1 parent 53ed894 commit ff955e9

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/JSONVar.cpp

-5
Original file line numberDiff line numberDiff line change
@@ -202,11 +202,6 @@ JSONVar::operator unsigned long () const
202202
return cJSON_IsNumber (_json) ? _json->valueint : 0;
203203
}
204204

205-
JSONVar::operator unsigned long() const
206-
{
207-
return cJSON_IsNumber(_json) ? _json->valueint : 0;
208-
}
209-
210205
JSONVar::operator double() const
211206
{
212207
return cJSON_IsNumber(_json) ? _json->valuedouble : NAN;

0 commit comments

Comments
 (0)