video_core/shader/ast: Make ASTManager::Print a const member function

Given all visiting functions never modify the nodes, we can trivially
make this a const member function.
This commit is contained in:
Lioncash 2019-10-17 20:56:36 -04:00
parent 7831e86c34
commit 222f4b45eb
2 changed files with 3 additions and 3 deletions

View file

@ -328,7 +328,7 @@ public:
void InsertReturn(Expr condition, bool kills);
std::string Print();
std::string Print() const;
void Decompile();