about summary refs log tree commit diff
path: root/src/libexpr/eval.hh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-08-02T18·29+0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-08-02T18·29+0000
commit46ffcce0c355ee16075b4ba216bc0aea054143aa (patch)
treee061b76819212fb465a0fcc17ef5fa79c5e03a92 /src/libexpr/eval.hh
parent8e74c0bfd1b61b175f04a7e0a8f0a3d9db809f1a (diff)
In the profiler output, show function names (if available)
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r--src/libexpr/eval.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh
index 6f6b2a9009..627eabf950 100644
--- a/src/libexpr/eval.hh
+++ b/src/libexpr/eval.hh
@@ -260,7 +260,7 @@ private:
     typedef std::map<Symbol, unsigned int> PrimOpCalls;
     PrimOpCalls primOpCalls;
 
-    typedef std::map<Pos, unsigned int> FunctionCalls;
+    typedef std::map<ExprLambda *, unsigned int> FunctionCalls;
     FunctionCalls functionCalls;
 
     typedef std::map<Pos, unsigned int> AttrSelects;