about summary refs log tree commit diff stats
path: root/subx/020elf.cc
diff options
context:
space:
mode:
Diffstat (limited to 'subx/020elf.cc')
-rw-r--r--subx/020elf.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/020elf.cc b/subx/020elf.cc
index 62743a98..ca7b2483 100644
--- a/subx/020elf.cc
+++ b/subx/020elf.cc
@@ -119,7 +119,7 @@ inline uint16_t u16_in(uint8_t* p) {
 :(before "End Types")
 struct perr {};
 :(code)
-ostream& operator<<(ostream& os, unused perr) {
+ostream& operator<<(ostream& os, vestigial perr) {
   if (errno)
     os << ": " << strerror(errno);
   return os;
@@ -128,7 +128,7 @@ ostream& operator<<(ostream& os, unused perr) {
 :(before "End Types")
 struct die {};
 :(code)
-ostream& operator<<(unused ostream& os, unused die) {
+ostream& operator<<(vestigial ostream&, vestigial die) {
   if (Trace_stream) Trace_stream->newline();
   exit(1);
 }