|
@@ -116,7 +116,11 @@ public:
|
|
|
virtual void writeName(const Name& name, const bool = false) {
|
|
|
name.toWire(getBuffer());
|
|
|
}
|
|
|
- virtual void writeName(const LabelSequence&, const bool) {} // unused
|
|
|
+ virtual void writeName(const LabelSequence&, const bool) {
|
|
|
+ // We shouldn't use this version of writeName (and we internally
|
|
|
+ // control it, so we simply assert it here)
|
|
|
+ assert(false);
|
|
|
+ }
|
|
|
};
|
|
|
|
|
|
void
|