[llvm] [llvm][ADT] Some AddressRanges.h improvements (PR #132847)
Jakub Kuderski via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 25 08:46:25 PDT 2025
================
@@ -22,14 +22,16 @@ namespace llvm {
class AddressRange {
public:
AddressRange() {}
- AddressRange(uint64_t S, uint64_t E) : Start(S), End(E) {
+ AddressRange(const uint64_t S, const uint64_t E) : Start(S), End(E) {
----------------
kuhar wrote:
In C++ it's weird because it's not a part of function signature. Since the rest of the project doesn't use it, we shouldn't adopt this style here either
https://github.com/llvm/llvm-project/pull/132847
More information about the llvm-commits
mailing list