Merge branch 'master' into 6.x

This commit is contained in:
Benoit Blanchon
2018-10-09 15:00:49 +02:00
5 changed files with 20 additions and 5 deletions

View File

@ -79,6 +79,7 @@ void checkIsString(const char *value) {
var.set(value);
REQUIRE(var.is<const char *>());
REQUIRE(var.is<std::string>());
REQUIRE_FALSE(var.is<bool>());
REQUIRE_FALSE(var.is<int>());