From 536fea1c8d091f8763b13e807216323f1fdd632a Mon Sep 17 00:00:00 2001 From: Mike Samsonov Date: Fri, 1 Nov 2019 14:50:30 +0000 Subject: [PATCH] operator less for old compilers --- code/FBX/FBXDocument.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/FBX/FBXDocument.h b/code/FBX/FBXDocument.h index 51c98da49..a60d7d9ef 100644 --- a/code/FBX/FBXDocument.h +++ b/code/FBX/FBXDocument.h @@ -646,6 +646,11 @@ public: ); } + bool operator<(const Video& other) const + { + return std::tie(type, relativeFileName, fileName) < std::tie(other.type, other.relativeFileName, other.fileName); + } + private: std::string type; std::string relativeFileName;