fix compile problem

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3415 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2002-01-18 10:31:30 +00:00
parent ddf8ca8f26
commit 6e1817f7b6
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-01-18 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* DepTable.C (insert): add std:: qualifier
2002-01-18 Allan Rae <rae@lyx.org>
* text2.C (removeRow): add comment. Should other refresh_?? vars be

View File

@ -50,7 +50,7 @@ void DepTable::insert(string const & fi,
dep_info di;
di.crc_prev = 0;
if (upd) {
lyxerr[Debug::DEPEND] << " CRC..." << flush;
lyxerr[Debug::DEPEND] << " CRC..." << std::flush;
di.crc_cur = lyx::sum(f);
lyxerr[Debug::DEPEND] << "done." << endl;
struct stat f_info;