New house rules

This commit is contained in:
Eugene Yokota 2015-09-16 22:06:13 -04:00
parent 589bb1a340
commit dada85f3e8
1 changed files with 3 additions and 1 deletions

View File

@ -77,7 +77,9 @@ object Instance {
* this should be the argument wrapped in Right.
*/
def contImpl[T, N[_]](c: Context, i: Instance with Singleton, convert: Convert, builder: TupleBuilder)(t: Either[c.Expr[T], c.Expr[i.M[T]]], inner: Transform[c.type, N])(
implicit tt: c.WeakTypeTag[T], nt: c.WeakTypeTag[N[T]], it: c.TypeTag[i.type]): c.Expr[i.M[N[T]]] =
implicit
tt: c.WeakTypeTag[T], nt: c.WeakTypeTag[N[T]], it: c.TypeTag[i.type]
): c.Expr[i.M[N[T]]] =
{
import c.universe.{ Apply => ApplyTree, _ }