Commit 22cc51ab authored by Paul's avatar Paul
Browse files

Remove ifdef

parent d37f0677
...@@ -108,7 +108,7 @@ auto nary(argument result, Arguments... args) ...@@ -108,7 +108,7 @@ auto nary(argument result, Arguments... args)
{ {
return nary_impl(result, args...); return nary_impl(result, args...);
} }
#if 0
inline auto nary(argument result, argument arg1, argument arg2) inline auto nary(argument result, argument arg1, argument arg2)
{ {
return [=](auto f) { return [=](auto f) {
...@@ -124,7 +124,6 @@ inline auto nary(argument result, argument arg1, argument arg2) ...@@ -124,7 +124,6 @@ inline auto nary(argument result, argument arg1, argument arg2)
} }
}; };
} }
#endif
} // namespace device } // namespace device
} // namespace gpu } // namespace gpu
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment