mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
Oops -- accidentally commit some debug code! Removing that code; NFC (this time for real).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227459 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1031549bec
commit
71f6e95824
@ -20,7 +20,7 @@ namespace llvm {
|
||||
|
||||
template <typename F> struct function_traits;
|
||||
|
||||
#if 0 && LLVM_HAS_VARIADIC_TEMPLATES
|
||||
#if LLVM_HAS_VARIADIC_TEMPLATES
|
||||
template <typename R, typename... Args>
|
||||
struct function_traits<R (*)(Args...)> : public function_traits<R(Args...)> {};
|
||||
|
||||
@ -37,14 +37,12 @@ struct function_traits<R (__stdcall C::*)(Args...)> {
|
||||
// exclusively.
|
||||
template <typename C, typename R, typename A1, typename A2, typename A3>
|
||||
struct function_traits<R (__stdcall C::*)(A1, A2, A3)> {
|
||||
//using args_tuple = std::tuple<A1, A2, A3>;
|
||||
typedef std::tuple<A1, A2, A3> args_tuple;
|
||||
};
|
||||
|
||||
template <typename C, typename R, typename A1, typename A2, typename A3,
|
||||
typename A4, typename A5>
|
||||
struct function_traits<R (__stdcall C::*)(A1, A2, A3, A4, A5)> {
|
||||
//using args_tuple = std::tuple<A1, A2, A3, A4, A5>;
|
||||
typedef std::tuple<A1, A2, A3, A4, A5> args_tuple;
|
||||
};
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user