Cleanup code format.

This commit is contained in:
yhirose 2015-05-19 09:07:27 -04:00
parent b8c2778e2a
commit 2badaa40a0

View File

@ -430,9 +430,9 @@ TEST_CASE("Predicate test", "[general]")
return stol(string(s, n), nullptr, 10);
};
parser["NUMBER"].predicate = [](const char* s, size_t n, const any& val, const any& dt) {
return val.get<long>() == 100;
};
parser["NUMBER"].predicate = [](const char* s, size_t n, const any& val, const any& dt) {
return val.get<long>() == 100;
};
long val;
auto ret = parser.parse("100", val);