mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-28 00:25:41 +00:00
13 lines
327 B
C++
13 lines
327 B
C++
#pragma once
|
|
#include <array>
|
|
#include <type_traits>
|
|
|
|
// Source: https://gist.github.com/klmr/2775736#file-make_array-hpp
|
|
|
|
template<typename... T>
|
|
constexpr auto make_array(T&&... values)
|
|
-> std::array<typename std::decay<typename std::common_type<T...>::type>::type, sizeof...(T)>
|
|
{
|
|
return {std::forward<T>(values)...};
|
|
}
|