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:
@@ -96,7 +96,7 @@ QDataStream &operator>>(QDataStream &in, CompleteCodeCommand &command)
|
||||
return in;
|
||||
}
|
||||
|
||||
bool operator == (const CompleteCodeCommand &first, const CompleteCodeCommand &second)
|
||||
bool operator==(const CompleteCodeCommand &first, const CompleteCodeCommand &second)
|
||||
{
|
||||
return first.ticketNumber_ == second.ticketNumber_
|
||||
&& first.filePath_ == second.filePath_
|
||||
@@ -105,7 +105,7 @@ bool operator == (const CompleteCodeCommand &first, const CompleteCodeCommand &s
|
||||
&& first.column_ == second.column_;
|
||||
}
|
||||
|
||||
bool operator < (const CompleteCodeCommand &first, const CompleteCodeCommand &second)
|
||||
bool operator<(const CompleteCodeCommand &first, const CompleteCodeCommand &second)
|
||||
{
|
||||
return first.ticketNumber_ < second.ticketNumber_
|
||||
&& first.filePath_ < second.filePath_
|
||||
@@ -114,7 +114,7 @@ bool operator < (const CompleteCodeCommand &first, const CompleteCodeCommand &se
|
||||
&& first.column_ < second.column_;
|
||||
}
|
||||
|
||||
QDebug operator <<(QDebug debug, const CompleteCodeCommand &command)
|
||||
QDebug operator<<(QDebug debug, const CompleteCodeCommand &command)
|
||||
{
|
||||
debug.nospace() << "CompleteCodeCommand(";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user