jack2
jack2 copied to clipboard
IIO Driver requires the std namespace
Add the standard namespace to JackIIODriver.cpp otherwise build fails
using namespace std is a blunt instrument and I'd personally steer clear of using it. Why not just prepend std:: to where it might be needed instead of undoing the whole purpose of namespaces at file scope?