You've already forked BanjoRecomp
mirror of
https://github.com/BanjoRecomp/BanjoRecomp.git
synced 2026-02-02 12:22:09 -08: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
|