[llvm] [llvm-rc] add support for MENUEX (PR #67464)
    Martin Storsjö via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Thu Oct  5 04:07:44 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:
Should there be flags logged here too, as compared with `MenuItem::log` above?
https://github.com/llvm/llvm-project/pull/67464
    
    
More information about the llvm-commits
mailing list