Added '-Wno-parentheses' to the compiler options in order to avoid silly compiler warnings

This commit is contained in:
Klaus Schmidinger
2008-01-13 13:00:23 +01:00
parent 4337f88820
commit 95764d4bd5
12 changed files with 25 additions and 20 deletions

View File

@@ -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).