summaryrefslogtreecommitdiff
path: root/autodoc
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2010-12-23 11:16:34 +0100
committerDavid Tardon <dtardon@redhat.com>2010-12-23 11:16:34 +0100
commit2d9b0850ceb94a499d123b8ea573dbff5291426f (patch)
tree7ecfd5b0eb5ba55c5f8feb2039f6cb87a293d307 /autodoc
parent82cdbdd88ff94c7a2b7f650f6b2b84d1e86917f0 (diff)
suppress compiler warning
Diffstat (limited to 'autodoc')
-rw-r--r--autodoc/source/display/html/opageenv.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/autodoc/source/display/html/opageenv.cxx b/autodoc/source/display/html/opageenv.cxx
index 87a170ff686b..4f48ca138217 100644
--- a/autodoc/source/display/html/opageenv.cxx
+++ b/autodoc/source/display/html/opageenv.cxx
@@ -357,7 +357,7 @@ OuputPage_Environment::SetFile_AllDefs()
void
OuputPage_Environment::SetFile_Index( char i_cLetter )
{
- csv_assert( 'A' <= i_cLetter AND i_cLetter <= 'Z' OR i_cLetter == '_' );
+ csv_assert( ( 'A' <= i_cLetter AND i_cLetter <= 'Z' ) OR i_cLetter == '_' );
static StreamStr sIndexFileName(40);
sIndexFileName.seekp(0);