================
@@ -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
----------------
labath wrote:

I'm wondering if this is really how the original code looked like. This is a 
particularly nasty form of ODR violation as it messes with the offsets of every 
field that comes after it (including of the non-plugin Proxy class which 
inherits from it). It doesn't really matter, as I still think it lldb should be 
able to handle this kind of a situation, but I'm surprised that code like this 
could ever work. Could it be that the original code used a milder form of this, 
like declaring a field with a different name/type (but the same size&alignment)?

https://github.com/llvm/llvm-project/pull/112566
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to