#include "tid-parse.h"
#include "cli/cli-style.h"
#include "cli/cli-decode.h"
-#include <unordered_set>
#include "break-cond-parse.h"
/* readline include files */
/* We would need to delete breakpoints other than the current one while
iterating, so all_breakpoints_safe is not sufficient to make that safe.
Save all breakpoints to delete in that set and delete them at the end. */
- std::unordered_set<breakpoint *> to_delete;
+ gdb::unordered_set<breakpoint *> to_delete;
for (struct breakpoint &b : all_breakpoints ())
{