aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Elofsson <jens.elofsson@arm.com>2021-05-27 15:05:22 +0200
committerJens Elofsson <jens.elofsson@arm.com>2021-05-27 15:05:22 +0200
commit036d1a89dffa4628f8d5b9a5b44ba9673ca2e3b4 (patch)
tree2736d821e44ce40e8d1d6880cb5da56482813f71
parentfdbf0ec317b29b0abb5a24d4e3c9140d933ea533 (diff)
downloadethos-u-core-software-036d1a89dffa4628f8d5b9a5b44ba9673ca2e3b4.tar.gz
Fix compiler warnings by redordering class members.
Change-Id: I780238c7695a326c088917cdd5b389d279d3d2c7
-rw-r--r--lib/ethosu_monitor/include/ethosu_monitor.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ethosu_monitor/include/ethosu_monitor.hpp b/lib/ethosu_monitor/include/ethosu_monitor.hpp
index fa5a63f..c2d0908 100644
--- a/lib/ethosu_monitor/include/ethosu_monitor.hpp
+++ b/lib/ethosu_monitor/include/ethosu_monitor.hpp
@@ -60,8 +60,8 @@ public:
private:
ethosu_pmu_event_type ethosuEventIds[ETHOSU_PMU_NCOUNTERS];
size_t numEvents;
- Backend backend;
std::vector<int32_t> eventRecordIds;
+ Backend backend;
};
#endif