forked from qt-creator/qt-creator
Cmb: Remove white spaces around operators
Change-Id: Icad10f930a5e67b90fc2addcf9625116069ff7a6 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
This commit is contained in:
@@ -70,18 +70,18 @@ QDataStream &operator>>(QDataStream &in, CodeCompletedCommand &command)
|
||||
return in;
|
||||
}
|
||||
|
||||
bool operator == (const CodeCompletedCommand &first, const CodeCompletedCommand &second)
|
||||
bool operator==(const CodeCompletedCommand &first, const CodeCompletedCommand &second)
|
||||
{
|
||||
return first.ticketNumber_ == second.ticketNumber_
|
||||
&& first.codeCompletions_ == second.codeCompletions_;
|
||||
}
|
||||
|
||||
bool operator < (const CodeCompletedCommand &first, const CodeCompletedCommand &second)
|
||||
bool operator<(const CodeCompletedCommand &first, const CodeCompletedCommand &second)
|
||||
{
|
||||
return first.ticketNumber_ < second.ticketNumber_;
|
||||
}
|
||||
|
||||
QDebug operator <<(QDebug debug, const CodeCompletedCommand &command)
|
||||
QDebug operator<<(QDebug debug, const CodeCompletedCommand &command)
|
||||
{
|
||||
debug.nospace() << "CodeCompletedCommand(";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user