
19 Nov
2008
19 Nov
'08
8:20 p.m.
Steven Watanabe skrev:
AMDG
Thorsten Ottosen wrote:
// if ResultType is void ResultType foo(Arg1 arg1, Arg2 arg2, ..., ArgN argN) { f(arg1, arg2, ..., argN); }
I believe the "If ResultType is void" is not needed. We can return void in C++.
Hm. Right, but I did get that from reading the docs. That could be said more directly IMO. And the fix to the code would be to say return static_cast<ResultType>(f(arg1,....)) would that not "swallow the return value" too? -Thorsten