A couple of using std::string declarations from Kayvan.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7878 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-10-08 08:38:05 +00:00
parent 8c96de553b
commit 372a70b8fd
2 changed files with 4 additions and 3 deletions

View File

@ -18,6 +18,9 @@
using std::endl;
using std::string;
// OK, this is ugly, but it is the only workaround I found to compile
// with gcc (any version) on a system which uses a non-GNU toolchain.
// The problem is that gcc uses a weak symbol for a particular
@ -42,9 +45,6 @@ template class boost::detail::crc_table_t<32, 0x04C11DB7, true>;
#include <sys/mman.h>
using std::string;
unsigned long lyx::support::sum(string const & file)
{
lyxerr[Debug::FILES] << "lyx::sum() using mmap (lightning fast)"

View File

@ -23,6 +23,7 @@
using namespace lyx::support;
using std::endl;
using std::string;
namespace {