From 1d8cad55b56c072dc7a59e98015d824094f812ea Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 31 Oct 2021 00:11:30 +0300 Subject: [PATCH] Fix the type of a location variable --- source/core/reflectdata.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/reflectdata.h b/source/core/reflectdata.h index 33ef1799..7d1b5acf 100644 --- a/source/core/reflectdata.h +++ b/source/core/reflectdata.h @@ -49,7 +49,7 @@ struct ReflectData struct AttributeInfo { std::string name; - unsigned location = -1; + int location = -1; unsigned array_size = 0; DataType type = VOID; }; -- 2.43.0