summaryrefslogtreecommitdiff
path: root/rsCppUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'rsCppUtils.h')
-rw-r--r--rsCppUtils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsCppUtils.h b/rsCppUtils.h
index 7377a44c..df1e864b 100644
--- a/rsCppUtils.h
+++ b/rsCppUtils.h
@@ -134,11 +134,11 @@ namespace android {
}
bool* editArray() {
- return (bool*)(this->begin());
+ return (bool*)(&*this->begin());
}
const bool* array() {
- return (const bool*)(this->begin());
+ return (const bool*)(&*this->begin());
}
};