All pastes #2064889 Raw Edit

Untitled

public text v1 · immutable
#2064889 ·published 2011-05-19 16:51 UTC
rendered paste body
//is this valid?
int main(){
 list<SomeObject> temp;
 someFunction(&temp);
 return 0;
}
void someFunction(list<SomeObject> * passed){
 SomeObject it;
 passed.push_front(it);//will a local copy be pushed? will the pushed object be acessible from main?
}