On Sat, May 20, 2017 at 8:18 PM, bcandler100 via golang-nuts
<golang-nuts@googlegroups.com> wrote:
> I expect this has been discussed before, so happy to receive any pointers.

Speaking of pointers... I've seen a serious, real world bug in C++
code that looked like this:

if (delete_the_users_data) {
  delete_data(etc);
}

What was the bug? delete_the_users_data was a *bool, not a bool.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to