[ox/model] Fix name shadowing

(synced from 959807c08b)
This commit is contained in:
2019-06-26 23:47:10 -05:00
parent ce420c8f9f
commit 062e68f181
+2 -2
View File
@@ -38,8 +38,8 @@ class TypeDescWriter {
TypeName name;
constexpr void setTypeInfo(const char *name, int) noexcept {
this->name = name;
constexpr void setTypeInfo(const char *n, int) noexcept {
this->name = n;
}
template<typename T>