diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-08-02T18·29+0000 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-08-02T18·29+0000 |
commit | 46ffcce0c355ee16075b4ba216bc0aea054143aa (patch) | |
tree | e061b76819212fb465a0fcc17ef5fa79c5e03a92 /src/libexpr/eval.hh | |
parent | 8e74c0bfd1b61b175f04a7e0a8f0a3d9db809f1a (diff) |
In the profiler output, show function names (if available)
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r-- | src/libexpr/eval.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index 6f6b2a9009fe..627eabf950d6 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; |