From 62a7342edb16c38e3d646cc731a4a50ad6657b4f Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 9 Mar 2010 14:15:47 +0100 Subject: python/generic.cc: use std::string instead of string --- python/generic.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/generic.cc') diff --git a/python/generic.cc b/python/generic.cc index 640f0862..b0770e02 100644 --- a/python/generic.cc +++ b/python/generic.cc @@ -31,11 +31,11 @@ PyObject *HandleErrors(PyObject *Res) Py_DECREF(Res); } - string Err; + std::string Err; int errcnt = 0; while (_error->empty() == false) { - string Msg; + std::string Msg; bool Type = _error->PopMessage(Msg); if (errcnt > 0) Err.append(", "); -- cgit v1.2.3