//===--- Disambiguate.cpp - Find the best tree in the forest --------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "clang-pseudo/Disambiguate.h" namespace clang::pseudo { Disambiguation disambiguate(const ForestNode *Root, const DisambiguateParams &Params) { … } void removeAmbiguities(ForestNode *&Root, const Disambiguation &D) { … } } // namespace clang::pseudo