Changeset View
Changeset View
Standalone View
Standalone View
clang/lib/Tooling/EmptyNodeIntrospection.inc.in
- This file was added.
//===- EmptyNodeIntrospection.inc.in --------------------------------------===// | |||||
// | |||||
// 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 | |||||
// | |||||
//===----------------------------------------------------------------------===// | |||||
namespace clang { | |||||
namespace tooling { | |||||
NodeLocationAccessors NodeIntrospection::GetLocations(clang::Stmt const *) { | |||||
return {}; | |||||
} | |||||
NodeLocationAccessors | |||||
NodeIntrospection::GetLocations(clang::DynTypedNode const &) { | |||||
return {}; | |||||
} | |||||
} // namespace tooling | |||||
} // namespace clang |