mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
16 lines
317 B
C++
16 lines
317 B
C++
#pragma once
|
|
|
|
#include <type_traits>
|
|
|
|
namespace utils
|
|
{
|
|
template <typename T1, typename T2>
|
|
requires std::is_trivially_copyable_v<T1> && std::is_trivially_destructible_v<T1> &&
|
|
std::is_trivially_copyable_v<T2> && std::is_trivially_destructible_v<T2>
|
|
struct pair
|
|
{
|
|
T1 first {};
|
|
T2 second {};
|
|
};
|
|
}
|