diff options
Diffstat (limited to 'autodoc')
-rw-r--r-- | autodoc/source/display/html/opageenv.cxx | 2 |
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); |