1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Eliinate meaningless 'const'.

This commit is contained in:
Thomas Harte 2024-03-04 14:09:27 -05:00
parent 0cdca12e06
commit 1b7c3644f4

View File

@ -266,7 +266,7 @@ struct Registers {
return active_[offset];
}
const uint32_t operator[](size_t offset) const {
uint32_t operator[](size_t offset) const {
return active_[offset];
}