13
0

remove references to un-namespaced "error" symbol

git-svn-id: svn://localhost/ardour2/trunk@634 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-06-22 15:00:45 +00:00
parent 79bd2334db
commit 58c39d50b1

View File

@ -24,12 +24,12 @@
#include <string>
#include <pbd/transmitter.h>
#include <pbd/error.h>
using std::string;
using std::ios;
Transmitter::Transmitter (Channel c)
{
channel = c;
switch (c) {
@ -110,7 +110,6 @@ extern "C" {
void pbd_c_error (const char *str)
{
extern Transmitter error;
error << str << endmsg;
PBD::error << str << endmsg;
}
}