diff options
author | David Robillard <d@drobilla.net> | 2017-12-25 16:05:05 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-12-25 16:26:13 -0500 |
commit | 71808f61f7db48a7ab4e16537b94ee5686749909 (patch) | |
tree | 5529b7c60b2488ac9575ddcb597c905bde577399 /src/client/PluginModel.cpp | |
parent | 15b3b0e9f8823752f80c7e597a70749813e61c79 (diff) | |
download | ingen-71808f61f7db48a7ab4e16537b94ee5686749909.tar.gz ingen-71808f61f7db48a7ab4e16537b94ee5686749909.tar.bz2 ingen-71808f61f7db48a7ab4e16537b94ee5686749909.zip |
Remove superfluous using namespace declarations
Diffstat (limited to 'src/client/PluginModel.cpp')
-rw-r--r-- | src/client/PluginModel.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/PluginModel.cpp b/src/client/PluginModel.cpp index 42422b12..e8bdf12a 100644 --- a/src/client/PluginModel.cpp +++ b/src/client/PluginModel.cpp @@ -30,7 +30,7 @@ #include "ingen_config.h" -using namespace std; +using std::string; namespace Ingen { namespace Client { @@ -221,9 +221,9 @@ PluginModel::port_scale_points(uint32_t i) const LilvScalePoints* sp = lilv_port_get_scale_points(_lilv_plugin, port); LILV_FOREACH(scale_points, i, sp) { const LilvScalePoint* p = lilv_scale_points_get(sp, i); - points.insert( - make_pair(lilv_node_as_float(lilv_scale_point_get_value(p)), - lilv_node_as_string(lilv_scale_point_get_label(p)))); + points.emplace( + lilv_node_as_float(lilv_scale_point_get_value(p)), + lilv_node_as_string(lilv_scale_point_get_label(p))); } } return points; |