From 937a175898b349ee6f6b87db07d2865012b9cf3a Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Mon, 7 Dec 2015 19:30:48 +1000 Subject: [PATCH] Put ARDOUR::SystemExec implementation inside ARDOUR namespace in source file --- libs/ardour/system_exec.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/ardour/system_exec.cc b/libs/ardour/system_exec.cc index b85b2347ae..aec8956422 100644 --- a/libs/ardour/system_exec.cc +++ b/libs/ardour/system_exec.cc @@ -25,7 +25,7 @@ #include "ardour/filesystem_paths.h" #include "ardour/system_exec.h" -using namespace ARDOUR; +namespace ARDOUR { char * SystemExec::_vfork_exec_wrapper = NULL; @@ -78,3 +78,5 @@ SystemExec::SystemExec (std::string c, const std::map subs) } SystemExec::~SystemExec() { } + +} // namespace ARDOUR