From: Jean-Marc Lasgouttes Date: Mon, 11 Feb 2002 10:07:28 +0000 (+0000) Subject: win32 compile fix X-Git-Tag: 1.6.10~19880 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=ccdfe85d2b141a91a0aa84437988bfc5609d5b6e;p=features.git win32 compile fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3515 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/support/ChangeLog b/src/support/ChangeLog index 7f51bbc200..c93bf8eaa6 100644 --- a/src/support/ChangeLog +++ b/src/support/ChangeLog @@ -1,3 +1,7 @@ +2002-02-10 Kayvan Sylvan + + * os_win32.C: Add "using std::endl" to fix compilation for GCC 3.X. + 2002-02-08 Jean-Marc Lasgouttes * FileInfo.h: remove special cygwin code. diff --git a/src/support/os_win32.C b/src/support/os_win32.C index e02f0f5f6c..8d2b848732 100644 --- a/src/support/os_win32.C +++ b/src/support/os_win32.C @@ -19,6 +19,8 @@ string os::tmpdir_ = string(); os::shell_type os::_shell = os::UNIX; unsigned long os::cp_ = 0; +using std::endl; + void os::init(int * /* argc */, char ** argv[]) { static bool initialized = false; if (initialized) return;