summaryrefslogtreecommitdiff
path: root/HISTORY
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2008-01-13 13:00:23 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2008-01-13 13:00:23 +0100
commit95764d4bd5eb667db9cfefe049cc51aa2cc44bfc (patch)
tree6104b73dabccb4264680b9d0f31f863adcbe73f3 /HISTORY
parent4337f88820048d2663726b26c296ddf597914c58 (diff)
downloadvdr-95764d4bd5eb667db9cfefe049cc51aa2cc44bfc.tar.gz
vdr-95764d4bd5eb667db9cfefe049cc51aa2cc44bfc.tar.bz2
Added '-Wno-parentheses' to the compiler options in order to avoid silly compiler warnings
Diffstat (limited to 'HISTORY')
-rw-r--r--HISTORY4
1 files changed, 4 insertions, 0 deletions
diff --git a/HISTORY b/HISTORY
index 6a42fb94..681fdf9b 100644
--- a/HISTORY
+++ b/HISTORY
@@ -5549,3 +5549,7 @@ Video Disk Recorder Revision History
Andreas Brugger).
- Added a missing setting of lastFreeMB in cMenuMain::Update() (reported by
Andreas Brugger).
+- Added '-Wno-parentheses' to the compiler options in order to avoid silly compiler
+ warnings for expessions like 'a || b && c', where GCC 4.3 wants to force the
+ programmer to write 'a || (b && c)', while everybody knows that '&&' links
+ stronger than '||' (reported by Tobias Grimm).