about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/value-to-xml.cc
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/src/libexpr/value-to-xml.cc')
-rw-r--r--third_party/nix/src/libexpr/value-to-xml.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/third_party/nix/src/libexpr/value-to-xml.cc b/third_party/nix/src/libexpr/value-to-xml.cc
index aba6013f98..921973881f 100644
--- a/third_party/nix/src/libexpr/value-to-xml.cc
+++ b/third_party/nix/src/libexpr/value-to-xml.cc
@@ -163,11 +163,6 @@ static void printValueAsXML(EvalState& state, bool strict, bool location,
       break;
     }
 
-    case tExternal:
-      v.external->printValueAsXML(state, strict, location, doc, context,
-                                  drvsSeen);
-      break;
-
     case tFloat:
       doc.writeEmptyElement(
           "float", singletonAttrs("value", (format("%1%") % v.fpoint).str()));
@@ -178,13 +173,6 @@ static void printValueAsXML(EvalState& state, bool strict, bool location,
   }
 }
 
-void ExternalValueBase::printValueAsXML(EvalState& state, bool strict,
-                                        bool location, XMLWriter& doc,
-                                        PathSet& context,
-                                        PathSet& drvsSeen) const {
-  doc.writeEmptyElement("unevaluated");
-}
-
 void printValueAsXML(EvalState& state, bool strict, bool location, Value& v,
                      std::ostream& out, PathSet& context) {
   XMLWriter doc(true, out);