diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-06-21 11:49:42 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-07-10 23:13:14 +0200 |
| commit | b9686f36146719d81473612e66eec452cd0b53f8 (patch) | |
| tree | 5bea3acba20a0c603e34052204f238f608dfb5a1 /src/lib/spl.h | |
| parent | 09b4dcf460d6fbe69139eca40f1c890ea5f33a5d (diff) | |
Replace SPL::operator[] with get().
Diffstat (limited to 'src/lib/spl.h')
| -rw-r--r-- | src/lib/spl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/spl.h b/src/lib/spl.h index b010a4bed..547b475c8 100644 --- a/src/lib/spl.h +++ b/src/lib/spl.h @@ -56,7 +56,7 @@ public: return _spl; } - SPLEntry const & operator[](std::size_t index) const { + SPLEntry const& get(std::size_t index) const { return _spl[index]; } |
