if I have a function set up similarly to this:
update_value(const int& old_value, const int& new_value){
}
What if I need to get the value of old_value and new_value and use these values in a mutable variable?
I can't dereference with a *pointer. How do I work around this?