1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-25 16:31:42 +00:00

get_interrupt_line can be const.

This commit is contained in:
Thomas Harte 2021-06-27 21:37:11 -04:00
parent 6afee7bb9b
commit b5312b9ba0

View File

@ -34,7 +34,7 @@ class Nick {
@returns The current state of the interrupt line @c true for active;
@c false for inactive.
*/
inline bool get_interrupt_line() {
inline bool get_interrupt_line() const {
return interrupt_line_;
}