Add include of cstdint to permute_vector.h (#711)

This avoids the following error with GCC 15:

  src/tim/transform/ops/../permute_vector.h:41:11: error: 'uint32_t'
  does not name a type
     41 |   virtual uint32_t Rank() const = 0;
        |           ^~~~~~~~
  src/tim/transform/ops/../permute_vector.h:32:1: note: 'uint32_t' is
  defined in header '<cstdint>'; this is probably fixable by adding
  '#include <cstdint>'
     31 | #include <string>
    +++ |+#include <cstdint>
     32 |

Co-authored-by: Peter Kjellerstedt <pkj@axis.com>
This commit is contained in:
Peter Kjellerstedt 2025-10-13 07:15:57 +02:00 committed by GitHub
parent c4e75674fa
commit 3c83eca946
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@
#include <array>
#include <cassert>
#include <cstdint>
#include <memory>
#include <vector>
#include <string>