aboutsummaryrefslogtreecommitdiff
path: root/src/common/test_assembler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/test_assembler.h')
-rw-r--r--src/common/test_assembler.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/test_assembler.h b/src/common/test_assembler.h
index 401e8528..891cf677 100644
--- a/src/common/test_assembler.h
+++ b/src/common/test_assembler.h
@@ -271,7 +271,10 @@ class Section {
public:
Section(Endianness endianness = kUnsetEndian)
: endianness_(endianness) { };
- ~Section() { };
+
+ // A base class destructor should be either public and virtual,
+ // or protected and nonvirtual.
+ virtual ~Section() { };
// Set the default endianness of this section to ENDIANNESS. This
// sets the behavior of the D<N> appending functions. If the