Cmb: Remove white spaces around operators

Change-Id: Icad10f930a5e67b90fc2addcf9625116069ff7a6
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
This commit is contained in:
Marco Bubke
2015-06-10 13:52:45 +02:00
parent 7309e8bb64
commit 29b96af1cb
48 changed files with 170 additions and 170 deletions

View File

@@ -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(";