remove redundancies in the .pgf format kept for lagacy reasons

This commit is contained in:
Krasimir Angelov
2022-02-08 19:04:08 +01:00
parent 4ee671e59d
commit fdd33b63d9
5 changed files with 6 additions and 113 deletions

View File

@@ -22,11 +22,11 @@ public:
template<class V>
ref<V> read_name(PgfText V::* field) {
return read_name_internal((size_t) &(((V*) NULL)->*field));
return read_text_internal((size_t) &(((V*) NULL)->*field));
};
ref<PgfText> read_name() {
return read_name_internal(0);
return read_text_internal(0);
};
template<class V>