sapling/eden/fs/model/Tree.cpp
Adam Simpkins 7e7d208127 add == and != comparisons for Tree objects
Summary:
Add == and != operators for Tree and TreeEntry.
These are mainly useful for unit tests to compare that imported trees look as
expected.

Reviewed By: wez

Differential Revision: D5365956

fbshipit-source-id: c039dfc58e430e99466db1a6c891a3c50d7906fe
2017-07-05 11:21:30 -07:00

24 lines
629 B
C++

/*
* Copyright (c) 2004-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#include "Tree.h"
namespace facebook {
namespace eden {
bool operator==(const Tree& tree1, const Tree& tree2) {
return (tree1.getHash() == tree2.getHash()) &&
(tree1.getTreeEntries() == tree2.getTreeEntries());
}
bool operator!=(const Tree& tree1, const Tree& tree2) {
return !(tree1 == tree2);
}
}
}