Compile with gcc 4.0 without warnings.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@10167 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2005-07-12 10:51:13 +00:00
parent d3e22fdd81
commit 6da042cf97
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-07-12 Angus Leeming <leeming@lyx.org>
* boost/config/compiler/gcc.hpp allow to compile with gcc 4.0
without warnings.
2004-11-03 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* boost/format/feed_args.hpp: do not use a static string (bug 1702)

View File

@ -50,7 +50,7 @@
#endif
//
// last known and checked version is 3.4:
#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 4))
#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 0))
# if defined(BOOST_ASSERT_CONFIG)
# error "Unknown compiler version - please run the configure tests and report the results"
# else