forked from qt-creator/qt-creator
ClangBackEnd: Fix another operator<
Missed in 2fc604e699
Change-Id: I520cff39f806213b92f5f49bd8d22153ecdfe62b
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
abc5749f25
commit
3ea517636f
@@ -33,6 +33,8 @@
|
|||||||
#include <QDataStream>
|
#include <QDataStream>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
|
||||||
|
#include <container_common.h>
|
||||||
|
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
|
|
||||||
namespace ClangBackEnd {
|
namespace ClangBackEnd {
|
||||||
@@ -69,7 +71,7 @@ bool operator==(const ProjectPartsDoNotExistCommand &first, const ProjectPartsDo
|
|||||||
|
|
||||||
bool operator<(const ProjectPartsDoNotExistCommand &first, const ProjectPartsDoNotExistCommand &second)
|
bool operator<(const ProjectPartsDoNotExistCommand &first, const ProjectPartsDoNotExistCommand &second)
|
||||||
{
|
{
|
||||||
return first.projectPartIds_ < second.projectPartIds_;
|
return compareContainer(first.projectPartIds_, second.projectPartIds_);
|
||||||
}
|
}
|
||||||
|
|
||||||
QDebug operator<<(QDebug debug, const ProjectPartsDoNotExistCommand &command)
|
QDebug operator<<(QDebug debug, const ProjectPartsDoNotExistCommand &command)
|
||||||
|
Reference in New Issue
Block a user