Bug #5339
Json::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 over 5 years ago
- Status changed from New to InProgress
- Assignee set to André Jacobs
- Target version changed from 3.3.1 to 3.3.7