diff options
| author | Andreas Gampe <agampe@google.com> | 2018-10-04 11:03:34 -0700 |
|---|---|---|
| committer | Andreas Gampe <agampe@google.com> | 2018-10-09 14:38:45 -0700 |
| commit | 9b031f7e4834b263ae531409a9f6c82cfdc89477 (patch) | |
| tree | 4b5fdfc3ecc12b5b7e32959bec0c26595b87d2ab /libdexfile | |
| parent | c71f38bdf7dca39a070ba25d436edcd758551f42 (diff) | |
| download | art-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.h | 4 |
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); |
