| 245 | } |
| 246 | |
| 247 | void Console::WriteHistory() |
| 248 | { |
| 249 | history_[ next_history_line_index_ ]= input_line_; |
| 250 | next_history_line_index_= ( next_history_line_index_ + 1u ) % c_max_history; |
| 251 | history_size_++; |
| 252 | current_history_line_= 0u; |
| 253 | } |
| 254 | |
| 255 | void Console::CopyLineFromHistory() |
| 256 | { |
nothing calls this directly
no outgoing calls
no test coverage detected