mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-24 23:56:39 +00:00
12 lines
190 B
C++
12 lines
190 B
C++
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
template<class... Ts>
|
|
struct overload : Ts... {
|
|
using Ts::operator()...;
|
|
};
|
|
template<class... Ts>
|
|
overload(Ts...) -> overload<Ts...>;
|
|
|
|
#endif // UTILS_H
|