diff options
Diffstat (limited to 'tddb/td/db/binlog/binlog_dump.cpp')
| -rw-r--r-- | tddb/td/db/binlog/binlog_dump.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tddb/td/db/binlog/binlog_dump.cpp b/tddb/td/db/binlog/binlog_dump.cpp index 194bf8460..050b7b99b 100644 --- a/tddb/td/db/binlog/binlog_dump.cpp +++ b/tddb/td/db/binlog/binlog_dump.cpp @@ -125,7 +125,7 @@ int main(int argc, char *argv[]) { info[0].compressed_size += event.raw_event_.size(); info[event.type_].compressed_size += event.raw_event_.size(); if (event.type_ == ConfigPmcMagic || event.type_ == BinlogPmcMagic) { - auto key = td::TlParser(event.get_data()).fetch_string<td::Slice>(); + auto key = td::TlParser(event.get_data()).template fetch_string<td::Slice>(); info[event.type_].compressed_trie.add(key); } }, @@ -134,7 +134,7 @@ int main(int argc, char *argv[]) { info[0].full_size += event.raw_event_.size(); info[event.type_].full_size += event.raw_event_.size(); if (event.type_ == ConfigPmcMagic || event.type_ == BinlogPmcMagic) { - auto key = td::TlParser(event.get_data()).fetch_string<td::Slice>(); + auto key = td::TlParser(event.get_data()).template fetch_string<td::Slice>(); info[event.type_].trie.add(key); } LOG(PLAIN) << "LogEvent[" << td::tag("event_id", td::format::as_hex(event.id_)) |
