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/gui/Port.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/gui/Port.cpp')
-rw-r--r-- | src/gui/Port.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp index ebeb5e83..4f8e085e 100644 --- a/src/gui/Port.cpp +++ b/src/gui/Port.cpp @@ -37,7 +37,6 @@ #include "rgba.hpp" using namespace Ingen::Client; -using namespace std; namespace Ingen { namespace GUI { @@ -56,7 +55,7 @@ Port::create(App& app, Port::Port(App& app, Ganv::Module& module, SPtr<const PortModel> pm, - const string& name, + const std::string& name, bool flip) : Ganv::Port(module, name, flip ? (!pm->is_input()) : pm->is_input(), |