diff options
| author | 2014-11-05 02:42:56 +0000 | |
|---|---|---|
| committer | 2014-11-05 02:42:56 +0000 | |
| commit | 78a3233313260665fe82ba56257855e043bca3d4 (patch) | |
| tree | 46622bf088b3f30d2c6d8a5b548519137c88c867 /compiler/utils/array_ref.h | |
| parent | fe50a0f644bf57a92612d08ad21dc4ea5a2f652a (diff) | |
| parent | 277ccbd200ea43590dfc06a93ae184a765327ad0 (diff) | |
Merge "ART: More warnings"
Diffstat (limited to 'compiler/utils/array_ref.h')
| -rw-r--r-- | compiler/utils/array_ref.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/utils/array_ref.h b/compiler/utils/array_ref.h index c137e46804..1a7f2e8c02 100644 --- a/compiler/utils/array_ref.h +++ b/compiler/utils/array_ref.h @@ -73,8 +73,8 @@ class ArrayRef { : array_(array), size_(size) { } - constexpr ArrayRef(T* array, size_t size) - : array_(array), size_(size) { + constexpr ArrayRef(T* array_in, size_t size_in) + : array_(array_in), size_(size_in) { } template <typename Alloc> |