mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-30 00:09:00 +02:00
Move dead submodules in-tree
Signed-off-by: swurl <swurl@swurl.xyz>
This commit is contained in:
parent
c0cceff365
commit
6c655321e6
4081 changed files with 1185566 additions and 45 deletions
16
externals/oaknut/include/oaknut/impl/overloaded.hpp
vendored
Normal file
16
externals/oaknut/include/oaknut/impl/overloaded.hpp
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
// SPDX-FileCopyrightText: Copyright (c) 2023 merryhime <https://mary.rs>
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace oaknut::detail {
|
||||
|
||||
template<class... Ts>
|
||||
struct overloaded : Ts... {
|
||||
using Ts::operator()...;
|
||||
};
|
||||
|
||||
template<class... Ts>
|
||||
overloaded(Ts...) -> overloaded<Ts...>;
|
||||
|
||||
} // namespace oaknut::detail
|
||||
Loading…
Add table
Add a link
Reference in a new issue