ClangBackEnd: Fix another operator<

Missed in 2fc604e699

Change-Id: I520cff39f806213b92f5f49bd8d22153ecdfe62b
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
This commit is contained in:
Orgad Shaneh
2015-06-17 14:23:09 +03:00
committed by Orgad Shaneh
parent abc5749f25
commit 3ea517636f

View File

@@ -33,6 +33,8 @@
#include <QDataStream>
#include <QDebug>
#include <container_common.h>
#include <ostream>
namespace ClangBackEnd {
@@ -69,7 +71,7 @@ bool operator==(const ProjectPartsDoNotExistCommand &first, const ProjectPartsDo
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)