From 9bfe162cadacf2616f03fae4897648a173362703 Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Thu, 6 Feb 2020 16:29:51 -0500 Subject: [PATCH] Fix missing namespace that was causing a build error --- src/DbgBreakpoint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DbgBreakpoint.h b/src/DbgBreakpoint.h index ab1cf45489..e27fabe2c1 100644 --- a/src/DbgBreakpoint.h +++ b/src/DbgBreakpoint.h @@ -21,7 +21,7 @@ public: void SetID(int newID) { BPID = newID; } // 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(double time);