Skip to content

Commit

Permalink
WIP: fix CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe2933 committed Sep 2, 2024
1 parent a9acaa1 commit 4c5bbec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions interface/commands.cppm
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@ import :utils;
template <>
struct std::hash<VULKAN_HPP_NAMESPACE::CommandPool> {
size_t operator()( VULKAN_HPP_NAMESPACE::CommandPool const & commandPool ) const VULKAN_HPP_NOEXCEPT {
return hash<VULKAN_HPP_NAMESPACE::CommandPool::CType>{}( toCType(commandPool) );
return hash<VULKAN_HPP_NAMESPACE::CommandPool::CType>{}( vku::toCType(commandPool) );
}
};

template <>
struct std::hash<VULKAN_HPP_NAMESPACE::Queue> {
size_t operator()( VULKAN_HPP_NAMESPACE::Queue const & queue ) const VULKAN_HPP_NOEXCEPT {
return hash<VULKAN_HPP_NAMESPACE::Queue::CType>{}( toCType(queue) );
return hash<VULKAN_HPP_NAMESPACE::Queue::CType>{}( vku::toCType(queue) );
}
};

template <>
struct std::hash<VULKAN_HPP_NAMESPACE::Semaphore> {
size_t operator()( VULKAN_HPP_NAMESPACE::Semaphore const & semaphore ) const VULKAN_HPP_NOEXCEPT {
return hash<VULKAN_HPP_NAMESPACE::Semaphore::CType>{}( toCType(semaphore) );
return hash<VULKAN_HPP_NAMESPACE::Semaphore::CType>{}( vku::toCType(semaphore) );
}
};
#endif
Expand Down

0 comments on commit 4c5bbec

Please sign in to comment.