isExplicitSpecified was renamed to hasExplicitSpecifier.

See llvm-mirror/clang@7a6d690.
This commit is contained in:
Vassil Vassilev 2020-03-15 15:02:11 +02:00 committed by jenkins
parent 99a5da9134
commit 2419680d6b

View File

@ -410,7 +410,7 @@ namespace cling {
if (D->isModulePrivate()) Out() << "__module_private__ ";
if (D->isConstexpr() && !D->isExplicitlyDefaulted())
Out() << "constexpr ";
if ((CDecl && CDecl->isExplicitSpecified()) ||
if ((CDecl && CDecl->hasExplicitSpecifier()) ||
(ConversionDecl && ConversionDecl->isExplicit()))
Out() << "explicit ";
}