Tagged Questions
1
vote
3answers
183 views
Is the aliasing rule symmetric?
I had a discussion with someone on IRC and this question turned up. We are allowed by the Standard to change an object of type int by a char lvalue.
int a;
char *b = (char*) &a;
*b = 0;
Would ...
1
vote
4answers
873 views
C++ Symmetric Binary Operators with Different Types
I am learning C++ and I was wondering if I could gain some insight into the preferred way of creating binary operators that work on instances of two different types. Here is an example that I've made ...