================
@@ -834,3 +834,13 @@ Some_struct g_s1{ .SomeMember = 1 };
// CHECK-FIXES: Some_struct g_s1{ .some_member = 1 };
Some_struct g_s2{.SomeMember=1};
// CHECK-FIXES: Some_struct g_s2{.some_member=1};
+
+// NOLINTBEGIN
+template<class T>
+struct X {
+ struct B;
+ struct A : public B {
+ virtual void foo() { }
+ };
+};
+// NOLINTEND
----------------
Purna-Chandra-4706 wrote:
I removed the NOLINT blocks as requested! I changed the test variables to
class_x, class_a, etc., to keep it simple. However, because those names don't
match the strict naming conventions expected by this file, it looks like the
automated CI test fails on unexpected warnings. Let me know if you'd like me to
rename them to something compliant (like class CX) so the test passes.
https://github.com/llvm/llvm-project/pull/220221
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits