mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-07 19:36:06 +03:00
DtoTypeInfoOf(): Make Loc param mandatory and move to 1st position
This commit is contained in:
parent
a9aafac862
commit
d3574b9835
9 changed files with 35 additions and 35 deletions
|
@ -62,7 +62,7 @@ void RTTIBuilder::push_null(Type *T) { push(getNullValue(DtoType(T))); }
|
|||
|
||||
void RTTIBuilder::push_null_vp() { push(getNullValue(getVoidPtrType())); }
|
||||
|
||||
void RTTIBuilder::push_typeinfo(Type *t) { push(DtoTypeInfoOf(t)); }
|
||||
void RTTIBuilder::push_typeinfo(Type *t) { push(DtoTypeInfoOf(Loc(), t)); }
|
||||
|
||||
void RTTIBuilder::push_string(const char *str) { push(DtoConstString(str)); }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue