Func(vector<Point> &p) {


}


int main() {

vector<Point> p;

Func(p);

}


이런식으로 참조형 변수는 받을때만 & 붙여주는게 아닌가요?