kCustomBegin overlapped with kExtEnd; incr by 1 (#3250)
authorGus Smith <gussmith@cs.washington.edu>
Tue, 28 May 2019 20:35:09 +0000 (13:35 -0700)
committerTianqi Chen <tqchen@users.noreply.github.com>
Tue, 28 May 2019 20:35:09 +0000 (13:35 -0700)
This was a typo in the original custom datatypes PR.

include/tvm/runtime/c_runtime_api.h

index ee3542f..fd1b877 100644 (file)
@@ -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;
 
 /*!