[llvm] [llvm-rc] add support for MENUEX (PR #67464)

Martin Storsjö via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 5 14:10:42 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:

Oh - I meant `logFlags()` as in the other items above. But I didn't look closely at the differences between `MenuItem` and `MenuExItem` to see if such flags still are relevant in `MenuExItem` or not.

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


More information about the llvm-commits mailing list