]> git.lyx.org Git - features.git/commitdiff
fix compile problem
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 18 Jan 2002 10:31:30 +0000 (10:31 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 18 Jan 2002 10:31:30 +0000 (10:31 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3415 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/DepTable.C

index 05fb99924fb6c16ef06269431c78d337c38bdc87..344f70ccb211b72e85a35bd5fa74ad3de5808a38 100644 (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
index 8a7d03c1a83b74c005f1989881f894d8c6179310..0e3a74bc79315b720dce7bcef1480968614f43ca 100644 (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;