MSVC2013 workarounds

This commit is contained in:
Daniel Sipka 2015-10-01 12:20:23 +02:00
parent e4c785beb4
commit cefdfba10f

View File

@ -28,7 +28,7 @@ using namespace mstchtest;
partials.insert(std::make_pair(partial_item.first, get<std::string>(partial_item.second))); \
for(auto& data_item: get<mstch::map>(test["data"])) \
if(data_item.first == "lambda") \
data_item.second = mstch::lambda{specs_lambdas[get<std::string>(test["name"])]}; \
data_item.second = mstch::lambda(specs_lambdas[get<std::string>(test["name"])]); \
SECTION(get<std::string>(test["name"])) \
REQUIRE(mstch::render( \
get<std::string>(test["template"]), \