From cac1b5a8e246ae1a0f9586cd57e0782c8b7bef31 Mon Sep 17 00:00:00 2001
From: tqchen <tianqi.tchen@gmail.com>
Date: Sun, 27 Nov 2016 15:44:40 -0800
Subject: [PATCH] fix compilation

---
 src/lang/tensor.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lang/tensor.cc b/src/lang/tensor.cc
index fb02dde25..ea1066fe8 100644
--- a/src/lang/tensor.cc
+++ b/src/lang/tensor.cc
@@ -21,7 +21,7 @@ Expr Tensor::operator()(Array<Expr> indices) const {
   CHECK_EQ(ndim(), indices.size())
       << "Tensor dimension mismatch in read"
       << "ndim = " << ndim() << ", indices.size=" << indices.size();
-  auto n Call::make(
+  auto n = Call::make(
       (*this)->dtype, (*this)->name, indices, Call::Halide, *this);
   return n;
 }
-- 
GitLab