mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Add a virtual destructor to quiet a warning.
llvm-svn: 203307
This commit is contained in:
parent
d07693fc22
commit
58ec868125
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user