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;