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

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