[Lldb-commits] [lldb] [lldb][test] Add test for ASTImporter's name conflict resolution (PR #112566)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 18 04:21:06 PDT 2024


================
@@ -0,0 +1,20 @@
+#ifndef SERVICE_H_IN
+#define SERVICE_H_IN
+
+struct ServiceAux;
+
+struct Service {
+  struct State;
+  bool start(State *) { return true; }
+
+#ifdef HIDE_FROM_PLUGIN
----------------
Michael137 wrote:

Yea unfortunately this is what the internal users are doing. I reached out to them to understand how this is not causing issues for them. They compile with a non-standards conforming extensions, so that might be part of the story

https://github.com/llvm/llvm-project/pull/112566


More information about the lldb-commits mailing list