Fix compilation for GCC 4.9.2

This commit is contained in:
Dennis Klein 2017-09-29 20:09:51 +02:00 committed by Mohammad Al-Turany
parent 4ae2e025c9
commit 1bc5771bf3

View File

@ -52,7 +52,7 @@ TEST_F(PluginServices, KeyDiscovery)
{ {
mConfig.SetValue("foo", 0); mConfig.SetValue("foo", 0);
auto keys{mServices.GetPropertyKeys()}; auto keys(mServices.GetPropertyKeys());
EXPECT_TRUE(find(keys.begin(), keys.end(), "foo") != keys.end()); EXPECT_TRUE(find(keys.begin(), keys.end(), "foo") != keys.end());
} }