/* * 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); } } }