[Lldb-commits] [lldb] [llvm] [DebugInfo] Add explicit visibility macros to CodeView template functions (PR #113102)
Saleem Abdulrasool via lldb-commits
lldb-commits at lists.llvm.org
Tue Nov 19 13:27:07 PST 2024
================
@@ -495,7 +495,8 @@ class ClassRecord : public TagRecord {
};
// LF_UNION
-struct UnionRecord : public TagRecord {
+class UnionRecord : public TagRecord {
+public:
----------------
compnerd wrote:
Why the change here? The use of `struct` _should_ be fine. Or was it that there was a conflict with the declaration from the XMACRO?
https://github.com/llvm/llvm-project/pull/113102
More information about the lldb-commits
mailing list