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:
@@ -77,17 +77,17 @@ QDataStream &operator>>(QDataStream &in, TranslationUnitDoesNotExistCommand &com
|
||||
return in;
|
||||
}
|
||||
|
||||
bool operator == (const TranslationUnitDoesNotExistCommand &first, const TranslationUnitDoesNotExistCommand &second)
|
||||
bool operator==(const TranslationUnitDoesNotExistCommand &first, const TranslationUnitDoesNotExistCommand &second)
|
||||
{
|
||||
return first.fileContainer_ == second.fileContainer_;
|
||||
}
|
||||
|
||||
bool operator < (const TranslationUnitDoesNotExistCommand &first, const TranslationUnitDoesNotExistCommand &second)
|
||||
bool operator<(const TranslationUnitDoesNotExistCommand &first, const TranslationUnitDoesNotExistCommand &second)
|
||||
{
|
||||
return first.fileContainer_ < second.fileContainer_;
|
||||
}
|
||||
|
||||
QDebug operator <<(QDebug debug, const TranslationUnitDoesNotExistCommand &command)
|
||||
QDebug operator<<(QDebug debug, const TranslationUnitDoesNotExistCommand &command)
|
||||
{
|
||||
debug.nospace() << "TranslationUnitDoesNotExistCommand(";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user