[ox/model] Fix name shadowing

This commit is contained in:
Gary Talent 2019-06-26 23:47:10 -05:00
parent 8730c6380c
commit 959807c08b

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>