From e26c01fe66bc698555fdee9d681b3abd6822848a Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 22 Aug 2017 00:17:03 +0300 Subject: Remove some parentheses. --- src/gui/fonts/textchunk.cpp | 4 ++-- src/gui/fonts/textchunksmall.cpp | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'src/gui/fonts') diff --git a/src/gui/fonts/textchunk.cpp b/src/gui/fonts/textchunk.cpp index 694790881..22dcd18dc 100644 --- a/src/gui/fonts/textchunk.cpp +++ b/src/gui/fonts/textchunk.cpp @@ -89,8 +89,8 @@ TextChunk::~TextChunk() bool TextChunk::operator==(const TextChunk &restrict chunk) const { - return (chunk.text == text && chunk.color == color - && chunk.color2 == color2); + return chunk.text == text && chunk.color == color + && chunk.color2 == color2; } void TextChunk::generate(TTF_Font *restrict const font, diff --git a/src/gui/fonts/textchunksmall.cpp b/src/gui/fonts/textchunksmall.cpp index c7fbf6051..73e8ad386 100644 --- a/src/gui/fonts/textchunksmall.cpp +++ b/src/gui/fonts/textchunksmall.cpp @@ -50,8 +50,9 @@ TextChunkSmall &TextChunkSmall::operator=(const TextChunkSmall &chunk) bool TextChunkSmall::operator==(const TextChunkSmall &chunk) const { - return (chunk.text == text && chunk.color == color - && chunk.color2 == color2); + return chunk.text == text && + chunk.color == color && + chunk.color2 == color2; } bool TextChunkSmall::operator<(const TextChunkSmall &chunk) const -- cgit v1.2.3-70-g09d2