commit | a180b7d58ac6da9d6da866e43aa8c1fa83923dc5 | [log] [tgz] |
---|---|---|
author | Stephen Hines <[email protected]> | Wed Aug 21 12:42:13 2013 -0700 |
committer | Stephen Hines <[email protected]> | Wed Aug 21 17:14:57 2013 -0700 |
tree | 101ccddee4d66c9a7ef9760d134d76d6d47c8747 | |
parent | ec35c66146c17570cfb877d7d9886bae63501fcd [diff] |
getType() should be const (for type-checking). Bug: 10427951 Change-Id: I9284351390d568d0242d87f49adc14348d209e69
diff --git a/cpp/rsCppStructs.h b/cpp/rsCppStructs.h index ef354f8..dca2bb1 100644 --- a/cpp/rsCppStructs.h +++ b/cpp/rsCppStructs.h
@@ -247,7 +247,7 @@ void validate2DRange(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h); public: - sp<const Type> getType() { + sp<const Type> getType() const { return mType; }