2

I have finally done what I will call a "pro javascript move", but I did this in C++...

QString str("hello");
float offset=0.0;
...
offset = somevalue;
return str + offset;

This printed out "hello[]". Where [] is some unknown character box.

No warnings at all. It just found a conversion function and did it.

Comments
  • 1
    That actually sounds very reasonable in a low level language
Add Comment