summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/PostProcessing.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-02-04 10:36:42 -0500
committerLioncash <mathew1800@gmail.com>2015-02-04 11:39:08 -0500
commite07679114bf33e387c2d4094cac3174650def0e5 (patch)
tree66a99498482b3bec7e703cfc011cd4036d190b62 /Source/Core/VideoCommon/PostProcessing.cpp
parent012a4c18ff9b8beeaafcf3e24846761e5c194a42 (diff)
Use emplace_* functions where in-place construction is preferable
Diffstat (limited to 'Source/Core/VideoCommon/PostProcessing.cpp')
-rw-r--r--Source/Core/VideoCommon/PostProcessing.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}
}
}