================ @@ -219,6 +218,9 @@ struct DAP { llvm::StringSet<> modules; /// @} + /// Number of lines of assembly code to show when no debug info is available. + static constexpr uint32_t number_of_assembly_lines_for_nodebug = 32; ---------------- JDevlieghere wrote:
Constants use a `k_` prefix. ```suggestion static constexpr uint32_t k_number_of_assembly_lines_for_nodebug = 32; ``` https://github.com/llvm/llvm-project/pull/139969 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits