[llvm] [llvm-rc] add support for MENUEX (PR #67464)
Martin Storsjö via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 5 14:22:31 PDT 2023
================
@@ -102,19 +102,36 @@ raw_ostream &MenuSeparator::log(raw_ostream &OS) const {
return OS << " Menu separator\n";
}
+raw_ostream &MenuExItem::log(raw_ostream &OS) const {
+ OS << " MenuExItem (" << Name << "), ID = " << Id;
+ return OS << "\n";
----------------
mstorsjo wrote:
Ok, I see. Thanks for clarifying!
https://github.com/llvm/llvm-project/pull/67464
More information about the llvm-commits
mailing list