1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Add a virtual destructor to quiet a warning.

llvm-svn: 203307
This commit is contained in:
Eric Christopher 2014-03-07 22:53:36 +00:00
parent d07693fc22
commit 58ec868125

View File

@ -23,6 +23,8 @@
namespace llvm {
class ByteStreamer {
public:
virtual ~ByteStreamer() {}
// For now we're just handling the calls we need for dwarf emission/hashing.
virtual void EmitInt8(uint8_t Byte, const Twine &Comment = "") = 0;
virtual void EmitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0;