Re: extract .manglof of template with lambda parameters

2016-07-24 Thread Nicholas Wilson via Digitalmars-d-learn
On Sunday, 24 July 2016 at 06:03:59 UTC, Nicholas Wilson wrote: so I have a main as follows int main(string[] args) { int a = 3; map!((int x) => x*x)((GlobalPointer!int(&a)),a); return 0; } I want to get the mangleof of the generated call to map but without referencing it in the .o

Re: extract .manglof of template with lambda parameters

2016-07-23 Thread Nicholas Wilson via Digitalmars-d-learn
On Sunday, 24 July 2016 at 06:03:59 UTC, Nicholas Wilson wrote: so I have a main as follows int main(string[] args) { int a = 3; map!((int x) => x*x)((GlobalPointer!int(&a)),a); return 0; } I want to get the mangleof of the generated call to map but without referencing it in the .o