You've already forked BanjoRecomp
mirror of
https://github.com/izzy2lost/BanjoRecomp.git
synced 2026-03-10 11:26:41 -07:00
11 lines
224 B
C++
11 lines
224 B
C++
#ifndef __OVERLOADED_H__
|
|
#define __OVERLOADED_H__
|
|
|
|
// Helper for std::visit
|
|
template<class... Ts>
|
|
struct overloaded : Ts... { using Ts::operator()...; };
|
|
template<class... Ts>
|
|
overloaded(Ts...) -> overloaded<Ts...>;
|
|
|
|
#endif
|