diff options
author | 2017-09-28 13:34:35 -0700 | |
---|---|---|
committer | 2017-09-28 14:08:50 -0700 | |
commit | d3ffa844f5a07756009f019e13806e253d1bb119 (patch) | |
tree | 75ebb146979439d850dd97b9645bae231923c5ca /tools/aapt2/Debug.cpp | |
parent | 43ddc05bbdbf8da73da2415b3ab4d68a0180f9b2 (diff) |
AAPT2: Cleanup Visitors for XML and Values
Test: make aapt2_tests
Change-Id: Ib61f64c155a380115610edeaf2d65e60258a2426
Diffstat (limited to 'tools/aapt2/Debug.cpp')
-rw-r--r-- | tools/aapt2/Debug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/aapt2/Debug.cpp b/tools/aapt2/Debug.cpp index dba9cb5c2803..1555d6126493 100644 --- a/tools/aapt2/Debug.cpp +++ b/tools/aapt2/Debug.cpp @@ -35,9 +35,9 @@ namespace aapt { namespace { -class PrintVisitor : public ValueVisitor { +class PrintVisitor : public DescendingValueVisitor { public: - using ValueVisitor::Visit; + using DescendingValueVisitor::Visit; void Visit(Attribute* attr) override { std::cout << "(attr) type="; |