1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

use = default instead of {}

llvm-svn: 231223
This commit is contained in:
David Blaikie 2015-03-04 07:35:04 +00:00
parent e62694bb59
commit 9b5f68b129

View File

@ -37,8 +37,8 @@ namespace llvm {
class format_object_base {
protected:
const char *Fmt;
~format_object_base() {} // Disallow polymorphic deletion.
format_object_base(const format_object_base&) = default;
~format_object_base() = default; // Disallow polymorphic deletion.
format_object_base(const format_object_base &) = default;
virtual void home(); // Out of line virtual method.
/// Call snprintf() for this object, on the given buffer and size.