19 lines
778 B
Diff
19 lines
778 B
Diff
|
--- armnn-24.08/include/armnn/Numpy.hpp.orig 2024-09-06 11:05:16.800066800 +0200
|
||
|
+++ armnn-24.08/include/armnn/Numpy.hpp 2024-09-06 11:05:58.717592900 +0200
|
||
|
@@ -157,7 +157,7 @@ namespace armnnNumpy
|
||
|
inline void CreateHeader(std::ifstream& ifStream, HeaderInfo& headerInfo, Header& header)
|
||
|
{
|
||
|
char stringBuffer[headerInfo.m_HeaderLen];
|
||
|
- ifStream.read(stringBuffer, headerInfo.m_HeaderLen);
|
||
|
+ ifStream.read(stringBuffer, static_cast<std::streamsize>(headerInfo.m_HeaderLen));
|
||
|
|
||
|
header.m_HeaderString = std::string(stringBuffer, headerInfo.m_HeaderLen);
|
||
|
// Remove new line character at the end of the string
|
||
|
@@ -403,4 +403,4 @@ namespace armnnNumpy
|
||
|
}
|
||
|
}
|
||
|
|
||
|
-#endif // NUMPY_HPP
|
||
|
\ No newline at end of file
|
||
|
+#endif // NUMPY_HPP
|