| 548 | } |
| 549 | |
| 550 | void take_note(const Note& note, bool force) |
| 551 | { |
| 552 | if (notes_active && (force || _is_noteworthy(note))) |
| 553 | { |
| 554 | note_list.push_back(note); |
| 555 | note.check_milestone(); |
| 556 | } |
| 557 | } |
| 558 | |
| 559 | void activate_notes(bool active) |
| 560 | { |
no test coverage detected