summaryrefslogtreecommitdiffstats
path: root/libdexfile
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2018-10-04 11:03:34 -0700
committerAndreas Gampe <agampe@google.com>2018-10-09 14:38:45 -0700
commit9b031f7e4834b263ae531409a9f6c82cfdc89477 (patch)
tree4b5fdfc3ecc12b5b7e32959bec0c26595b87d2ab /libdexfile
parentc71f38bdf7dca39a070ba25d436edcd758551f42 (diff)
downloadart-9b031f7e4834b263ae531409a9f6c82cfdc89477.tar.gz
art-9b031f7e4834b263ae531409a9f6c82cfdc89477.tar.bz2
art-9b031f7e4834b263ae531409a9f6c82cfdc89477.zip
ART: Refactor for bugprone-argument-comment
Handles smaller subdirectories. Bug: 116054210 Test: WITH_TIDY=1 mmma art Change-Id: I81c8f3396b9922684b68e9f3d8fccefe364f1279
Diffstat (limited to 'libdexfile')
-rw-r--r--libdexfile/dex/type_reference.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libdexfile/dex/type_reference.h b/libdexfile/dex/type_reference.h
index 9e7b8805af..3207e32510 100644
--- a/libdexfile/dex/type_reference.h
+++ b/libdexfile/dex/type_reference.h
@@ -31,8 +31,8 @@ class DexFile;
// A type is located by its DexFile and the string_ids_ table index into that DexFile.
class TypeReference : public DexFileReference {
public:
- TypeReference(const DexFile* file, dex::TypeIndex index)
- : DexFileReference(file, index.index_) {}
+ TypeReference(const DexFile* dex_file, dex::TypeIndex index)
+ : DexFileReference(dex_file, index.index_) {}
dex::TypeIndex TypeIndex() const {
return dex::TypeIndex(index);