Browse Source

yoga: Add missing include <cstdint> (#4785)

Christian Kurz 1 year ago
parent
commit
233b05c743
1 changed files with 1 additions and 0 deletions
  1. 1 0
      packages/y/yoga/xmake.lua

+ 1 - 0
packages/y/yoga/xmake.lua

@@ -21,6 +21,7 @@ package("yoga")
         on_check(function (package)
             assert(package:check_cxxsnippets({test = [[
                 #include <bit>
+                #include <cstdint>
                 void test() {
                     constexpr double f64v = 19880124.0; 
                     constexpr auto u64v = std::bit_cast<std::uint64_t>(f64v);