No Need For -> Operator


	struct X
	{
		int a;
	}

	...

	X x;
	X* px;

	...

	x.a; 	// access X.a
	px.a;	// access X.a