summaryrefslogtreecommitdiff
path: root/upb/symtab.h
diff options
context:
space:
mode:
Diffstat (limited to 'upb/symtab.h')
-rw-r--r--upb/symtab.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/upb/symtab.h b/upb/symtab.h
index 883324a..01d5cd0 100644
--- a/upb/symtab.h
+++ b/upb/symtab.h
@@ -154,9 +154,9 @@ inline SymbolTable* SymbolTable::New(const void* owner) {
return upb_symtab_new(owner);
}
-inline RefCounted* SymbolTable::Upcast() { return upb_upcast(this); }
+inline RefCounted* SymbolTable::Upcast() { return UPB_UPCAST(this); }
inline const RefCounted* SymbolTable::Upcast() const {
- return upb_upcast(this);
+ return UPB_UPCAST(this);
}
inline bool SymbolTable::IsFrozen() const {
return upb_symtab_isfrozen(this);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback