15 May
2012
15 May
'12
1:17 a.m.
Looking at some cctbx C++ code, I note use of syntax like int i = 1234; double d = static_cast<double>(i); How is this different or indeed preferable to double d = double(i); or d = i; ? Phil