Actions
Bug #5339
openJson::Value comparision operator always returns true
Start date:
10/13/2016
Due date:
% Done:
0%
Estimated time:
Description
An example:
Wt::Json::Value v1(1);
Wt::Json::Value v2(2);
std::cout << std::boolalpha << "int equal: " << (v1 == v2) << std::endl;
v1 = Wt::Json::Value("Value 1");
v2 = Wt::Json::Value("Value 2");
std::cout << std::boolalpha << "string equal: " << (v1 == v2) << std::endl;
Output:
int equal: true
string equal: true
Updated by Roel Standaert about 8 years ago
- Status changed from New to InProgress
- Assignee set to André Jacobs
- Target version changed from 3.3.1 to 3.3.7
Updated by André Jacobs about 8 years ago
- Status changed from InProgress to Implemented @Emweb
Updated by Koen Deforche about 8 years ago
- Status changed from Implemented @Emweb to Resolved
Updated by Roel Standaert over 7 years ago
- Status changed from Resolved to Feedback
Actions