mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
14 lines
224 B
C++
14 lines
224 B
C++
|
#pragma once
|
||
|
|
||
|
namespace chatterino {
|
||
|
|
||
|
template <class... Ts>
|
||
|
struct Overloaded : Ts... {
|
||
|
using Ts::operator()...;
|
||
|
};
|
||
|
|
||
|
template <class... Ts>
|
||
|
Overloaded(Ts...)->Overloaded<Ts...>;
|
||
|
|
||
|
} // namespace chatterino
|