semantic parses regardless of operator
RJD <[email protected]> Wed, 25 Feb 2015 18:44:48 +0000 (UTC)
| Newsgroups | gmane.emacs.semantic |
|---|---|
| Message-ID | <[email protected]> |
Whether I have an object itself - on the stack, for example - or if I create
a pointer to an object - on the heap, for example : I can use either access
operator to get at its public members. I believe this should be a new
feature introduced in that you must use the correct operator.
##EXAMPLE##
struct MS
{
MS(void){ }
int data;
int getData( void ) { return data }
};
int main(void)
{
MS* ms = new MS();
ms. // works
return 0;
}
##END EXAMPLE##
------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the
conversation now. http://goparallel.sourceforge.net/