From 7a1464cadb49b49e9a27b6950f73d6568af8d4d6 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Sat, 3 Feb 2018 20:37:39 -0800 Subject: [PATCH] Fix #410 --- src/indexer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/indexer.h b/src/indexer.h index 37b1dd70..d7fbf647 100644 --- a/src/indexer.h +++ b/src/indexer.h @@ -133,7 +133,7 @@ inline void Reflect(Reader& visitor, IndexFuncRef& value) { value.is_implicit = true; ++str_value; } - uint64_t id = atol(str_value); + RawId id = atol(str_value); const char* loc_string = strchr(str_value, '@') + 1; value.id = IndexFuncId(id);