> The following could result in undefined behavior:

The following is even more likely to be UB (not just IB):

```
int i1 = 1;
int* ip = &i1;
double* dp = (double*)ip;
int i1 = *((int*)dp);
```

Extra points for explaining where and why its _more_ likely to eat your shorts 
:grin:.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/794#issuecomment-443016949

Reply via email to