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:
@@ -72,17 +72,17 @@ QDataStream &operator>>(QDataStream &in, ProjectPartContainer &container)
|
||||
return in;
|
||||
}
|
||||
|
||||
bool operator == (const ProjectPartContainer &first, const ProjectPartContainer &second)
|
||||
bool operator==(const ProjectPartContainer &first, const ProjectPartContainer &second)
|
||||
{
|
||||
return first.projectPartId_ == second.projectPartId_;
|
||||
}
|
||||
|
||||
bool operator < (const ProjectPartContainer &first, const ProjectPartContainer &second)
|
||||
bool operator<(const ProjectPartContainer &first, const ProjectPartContainer &second)
|
||||
{
|
||||
return first.projectPartId_ < second.projectPartId_;
|
||||
}
|
||||
|
||||
QDebug operator <<(QDebug debug, const ProjectPartContainer &container)
|
||||
QDebug operator<<(QDebug debug, const ProjectPartContainer &container)
|
||||
{
|
||||
debug.nospace() << "ProjectPartContainer("
|
||||
<< container.projectPartId()
|
||||
|
||||
Reference in New Issue
Block a user