Skip to content

Commit 55873a0

Browse files
committed
Include cstdint for int64_t
1 parent 782d712 commit 55873a0

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

snippets/MacrosHppTemplate.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@
9090
# elif defined( _WIN32 ) && !defined( VULKAN_HPP_NO_WIN32_PROTOTYPES )
9191
using HINSTANCE = struct HINSTANCE__ *;
9292
# if defined( _WIN64 )
93+
# include <cstdint>
9394
using FARPROC = int64_t(__stdcall *)();
9495
# else
9596
using FARPROC = int(__stdcall *)();

vulkan/vulkan_hpp_macros.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
# elif defined( _WIN32 ) && !defined( VULKAN_HPP_NO_WIN32_PROTOTYPES )
9494
using HINSTANCE = struct HINSTANCE__ *;
9595
# if defined( _WIN64 )
96+
# include <cstdint>
9697
using FARPROC = int64_t( __stdcall * )();
9798
# else
9899
using FARPROC = int( __stdcall * )();

0 commit comments

Comments
 (0)