1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-03 04:05:49 +01:00

Add missing virtual destructor to IStringReader

This commit is contained in:
Michał Janiszewski
2016-09-10 21:05:40 +02:00
parent cce7d14b11
commit a2a067f0f1

View File

@@ -23,6 +23,8 @@
interface IStringReader
{
virtual ~IStringReader() = default;
virtual bool TryPeek(codepoint_t * outCodepoint) abstract;
virtual bool TryRead(codepoint_t * outCodepoint) abstract;
virtual void Skip() abstract;