Fix build error with gcc13 67/310267/1
authorDongsun Lee <ds73.lee@samsung.com>
Thu, 25 Apr 2024 00:46:01 +0000 (09:46 +0900)
committerDongsun Lee <ds73.lee@samsung.com>
Thu, 25 Apr 2024 00:47:55 +0000 (09:47 +0900)
"Some C++ Standard Library headers have been changed to no longer
include other headers that were being used internally by the library.
As such, C++ programs that used standard library components
without including the right headers will no longer compile."

For fixing, just need to explicitly include cstdint.

Change-Id: I69eeceb7f4388a4c7ee357a0a5b8d798508d4b6e

srcs/common.h

index b997809b77616ecc23ded9817ad0454bc61b4e35..fb7dfe2dccefa48ef101bb6c5f63963c0039462c 100644 (file)
@@ -17,7 +17,7 @@
 #pragma once
 
 #include <array>
-#include <cstddef>
+#include <cstdint>
 #include <string_view>
 #include <utility> // for std::move
 #include <vector>