From 3bd0b35df93949054ad20ac081d2d48fad362a43 Mon Sep 17 00:00:00 2001 From: Gus Smith Date: Tue, 28 May 2019 13:35:09 -0700 Subject: [PATCH] kCustomBegin overlapped with kExtEnd; incr by 1 (#3250) This was a typo in the original custom datatypes PR. --- include/tvm/runtime/c_runtime_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tvm/runtime/c_runtime_api.h b/include/tvm/runtime/c_runtime_api.h index ee3542f90255..fd1b877f6d4c 100644 --- a/include/tvm/runtime/c_runtime_api.h +++ b/include/tvm/runtime/c_runtime_api.h @@ -115,7 +115,7 @@ typedef enum { kExtReserveEnd = 64U, kExtEnd = 128U, // The rest of the space is used for custom, user-supplied datatypes - kCustomBegin = 128U, + kCustomBegin = 129U, } TVMTypeCode; /*!