aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/test/ProfilingTests.hpp
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2019-10-10 13:29:02 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-10-10 18:22:41 +0100
commit67ef2a52c3cdcc37538d77711bbcea2f0e5655e5 (patch)
tree8d25bcb2c10cba8945ae4638695d879e88b9d259 /src/profiling/test/ProfilingTests.hpp
parent8efc500a7465c03877db8bbe443134f2b1bbc1af (diff)
downloadarmnn-67ef2a52c3cdcc37538d77711bbcea2f0e5655e5.tar.gz
IVGCVSW-3964 Change the type held by the Packet class to unsigned char
* Updated the Packet class * Updated the pertinent code accordingly Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com> Change-Id: I73eab5b1ead67a610cd17fd33f8a74f764ad8cc4
Diffstat (limited to 'src/profiling/test/ProfilingTests.hpp')
-rw-r--r--src/profiling/test/ProfilingTests.hpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/profiling/test/ProfilingTests.hpp b/src/profiling/test/ProfilingTests.hpp
index e1686162db..4d2f974344 100644
--- a/src/profiling/test/ProfilingTests.hpp
+++ b/src/profiling/test/ProfilingTests.hpp
@@ -71,8 +71,7 @@ public:
std::this_thread::sleep_for(std::chrono::milliseconds(timeout));
// Return connection acknowledged packet
- std::unique_ptr<char[]> packetData;
- return Packet(65536, 0, packetData);
+ return Packet(65536);
}
};
@@ -94,8 +93,7 @@ public:
}
// Return connection acknowledged packet after three timeouts
- std::unique_ptr<char[]> packetData;
- return Packet(65536, 0, packetData);
+ return Packet(65536);
}
private: