llvm/clang-tools-extra/clangd/FeatureModule.cpp

//===--- FeatureModule.cpp - Plugging features into clangd ----------------===//
//
// 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 "FeatureModule.h"
#include "support/Logger.h"

namespace clang {
namespace clangd {

void FeatureModule::initialize(const Facilities &F) {}

FeatureModule::Facilities &FeatureModule::facilities() {}

bool FeatureModuleSet::addImpl(void *Key, std::unique_ptr<FeatureModule> M,
                               const char *Source) {}

} // namespace clangd
} // namespace clang