Fix illegal use of anonymous stack veriable in Deserializer
authorMatthew Bentham <Matthew.Bentham@arm.com>
Thu, 19 Sep 2019 11:04:13 +0000 (12:04 +0100)
committerMatteo Martincigh <matteo.martincigh@arm.com>
Thu, 19 Sep 2019 12:43:19 +0000 (12:43 +0000)
commit75ae2b026c99896ec0aa574ff985992ff422c3b2
tree8d6c6fb1c07f2e4a83e92721f00a124a6fc06d8d
parentdd32c5247704df40c95da5fddcf55acfd2231b1c
Fix illegal use of anonymous stack veriable in Deserializer

Temporary lifetime extension certainly applies where the local
variable is a const reference, but in this case (non-const refernece)
address sanitizer was reporting a problem. In any case in other
places that we use ToTensorInfo we store the value, so I think
the original code here was a mistake.

Change-Id: I55e185c46b1bf367a96d7d8c411ef86f07e8bd8d
Signed-off-by: Matthew Bentham <Matthew.Bentham@arm.com>
src/armnnDeserializer/Deserializer.cpp