search for: liebermann

Displaying 2 results from an estimated 2 matches for "liebermann".

Did you mean: lieberman
2004 Nov 22
0
[LLVMdev] Memory leaks revisited (and many fixed)
...ork better just to replace all direct references to "ConstantBool::{True,False}" with the appropriate "ConstantBool::get({true,false})" and then remove public access to the variables? -bw -- || "Ich kann gar nicht so viel essen, wie ich kotzen möchte" || - Max Liebermann, Painter and Designer, 1847-1935, when he saw || the SS marching through his street in Berlin the night Hitler || got into power.
2004 Nov 22
2
[LLVMdev] Memory leaks revisited (and many fixed)
Chris Lattner wrote: >>The four leaks are caused by the ConstantBool::True >>and ConstantBool::False (1 for each object + 1 for the use list dummy) - >> unfortunately they are not so easy to wrap with accessor functions >>since they are public member variables of the ConstantBool class... If >>only everyone used the ConstantBool::get() there would be no problem,