video_core/ast: Make ShowCurrentState() take a string_view instead of std::string

Allows the function to be non-allocating in terms of the output string.
This commit is contained in:
Lioncash 2019-10-05 08:48:15 -04:00
parent 3c54edae24
commit 6c41d1cd7e
2 changed files with 2 additions and 2 deletions

View file

@ -332,7 +332,7 @@ public:
void Decompile();
void ShowCurrentState(std::string state);
void ShowCurrentState(std::string_view state);
void SanityCheck();