mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-06 09:37:31 +00:00
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:
parent
d3e22fdd81
commit
6da042cf97
@ -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)
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user