Fix missing namespace that was causing a build error

This commit is contained in:
Tim Wojtulewicz 2020-02-06 16:29:51 -05:00
parent 66c4a93383
commit 9bfe162cad

View file

@ -21,7 +21,7 @@ public:
void SetID(int newID) { BPID = newID; } void SetID(int newID) { BPID = newID; }
// True if breakpoint could be set; false otherwise // True if breakpoint could be set; false otherwise
bool SetLocation(ParseLocationRec plr, string_view loc_str); bool SetLocation(ParseLocationRec plr, std::string_view loc_str);
bool SetLocation(Stmt* stmt); bool SetLocation(Stmt* stmt);
bool SetLocation(double time); bool SetLocation(double time);