We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdf9a65 commit 338986fCopy full SHA for 338986f
clang/include/clang/AST/Redeclarable.h
@@ -114,7 +114,9 @@ class Redeclarable {
114
115
bool isFirst() const {
116
return Link.is<KnownLatest>() ||
117
- Link.get<NotKnownLatest>().is<UninitializedLatest>();
+ // FIXME: 'template' is required on the next line due to an
118
+ // apparent clang bug.
119
+ Link.get<NotKnownLatest>().template is<UninitializedLatest>();
120
}
121
122
decl_type *getPrevious(const decl_type *D) const {
0 commit comments