From e07679114bf33e387c2d4094cac3174650def0e5 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 4 Feb 2015 10:36:42 -0500 Subject: Use emplace_* functions where in-place construction is preferable --- Source/Core/VideoCommon/PostProcessing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/PostProcessing.cpp') diff --git a/Source/Core/VideoCommon/PostProcessing.cpp b/Source/Core/VideoCommon/PostProcessing.cpp index c299d41b15..2d4290fbe6 100644 --- a/Source/Core/VideoCommon/PostProcessing.cpp +++ b/Source/Core/VideoCommon/PostProcessing.cpp @@ -129,7 +129,7 @@ void PostProcessingShaderConfiguration::LoadOptions(const std::string& code) IniFile::ParseLine(line, &key, &value); if (!(key == "" && value == "")) - current_strings->m_options.push_back(std::make_pair(key, value)); + current_strings->m_options.emplace_back(key, value); } } } -- cgit v1.2.3