Remove `mutable` and stray comment

The `mutable` was added back when `scope` was a `DataLayoutOpInterface`.

Differential Revision: https://reviews.llvm.org/D118643
This commit is contained in:
Sanjoy Das 2022-01-29 18:34:48 -08:00
parent 1a5388ca67
commit 18e33ba9c9
1 changed files with 1 additions and 3 deletions

View File

@ -173,9 +173,7 @@ private:
void checkValid() const;
/// Operation defining the scope of requests.
// TODO: this is mutable because the generated interface method are not const.
// Update the generator to support const methods and change this to const.
mutable Operation *scope;
Operation *scope;
/// Caches for individual requests.
mutable DenseMap<Type, unsigned> sizes;