video_core/shader/ast: Make ShowCurrentState() and SanityCheck() const member functions

These can also trivially be made const member functions, with the
addition of a few consts.
This commit is contained in:
Lioncash
2019-10-17 20:59:46 -04:00
parent 4f4bfa0448
commit 4e7dbc49f8
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -332,9 +332,9 @@ public:
void Decompile();
void ShowCurrentState(std::string_view state);
void ShowCurrentState(std::string_view state) const;
void SanityCheck();
void SanityCheck() const;
void Clear();