================ @@ -242,6 +242,12 @@ struct Configuration { std::string platformName; }; +enum Console : unsigned { + eInternalConsole, + eIntegratedTerminal, + eExternalTerminal +}; ---------------- ashgti wrote:
I think the naming convention in lldb is that these should be: ```cpp enum Console : unsigned { eConsoleInternal, eConsoleIntegratedTerminal, eConsoleExternalTerminal }; ``` https://github.com/llvm/llvm-project/pull/146950 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits