From 24b65937e103c5cb1232c3cbcbffc12322cb8ae3 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Sun, 6 Nov 2011 06:28:34 +0000 Subject: [PATCH] Remove the unused sCurrentOutput symbol --- src/libexpr/eval.cc | 1 - src/libexpr/eval.hh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index 64e6cbe64..2b97b76fb 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -133,7 +133,6 @@ string showType(const Value & v) EvalState::EvalState() : sWith(symbols.create("")) , sOutPath(symbols.create("outPath")) - , sCurrentOutput(symbols.create("currentOutput")) , sDrvPath(symbols.create("drvPath")) , sType(symbols.create("type")) , sMeta(symbols.create("meta")) diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index 3816f36bd..694d4407b 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -204,7 +204,7 @@ public: SymbolTable symbols; const Symbol sWith, sOutPath, sDrvPath, sType, sMeta, sName, - sSystem, sOverrides, sCurrentOutput; + sSystem, sOverrides; private: SrcToStore srcToStore;