Allegedly inlining std::inner_product() does NOT get inlined with gcc compiler < gcc 4.1 compilers, per the following bug .
Hence I would like to implement my own version of inner_product. Are there existing implementation available?
Thanks
|
|
|||||||||||
|
|
|
You just need to look in your C++ header files, find the definition, and redefine it with the "inline" keyword (possibly in your namespace). For example, looking at my headers:
|
||
|
|
|
|
The obvious implementations would look something like this:
Using such short identifiers is probably questionable, but for code like this that lives in a header so its compiled a gazillion times, short identifiers save parsing time... |
||
|
|