pointonsoftware / pscore

C++ library for building your business software
GNU Affero General Public License v3.0
1 stars 2 forks source link

Change validation result type from std::unordered_map to std::map #179

Closed gbenziv closed 3 years ago

gbenziv commented 3 years ago

Change from:

 validationResult->insert(validator.result().begin(), validator.result().end());

to

 validationResult->merge(validator.result());