I have logging function being called at several places throughout the code. To every log, I have to supply 2 compile time constants. There are 2 approaches to accomplish:
(1) Function argument:
template<typename T>
void log (const T &obj, const int LINE, const int COUNT)
{
// T is used for some purpose
if(debug)
logging(obj.out(), LINE, COUNT);
}
call it as,
log(str, __LINE__, __COUNTER__);
(2) Template parameter:
template<typename T, int LINE, int COUNT>
void log (T &obj)
{
// T is used for some purpose
if(debug)
logging(obj.out(), LINE, COUNT);
}
call it as,
log<__LINE__, __COUNTER__>(str);
I am not able to decide, because 1st approach offers simplicity, but we are passing constant at compile time. 2nd approach is perfect, but compilation time would probably increase. This task is tedious, and I haven't implemented any of them yet, so I don't have any bench mark.
It will be a great help if someone can answer this from their experience/knowledge.
loggingfunction does, it will most certainly be slower than passing two integers as arguments. So I don't see how the runtime performance will change very much either way. This sounds suspiciously like a premature optimization. – Nicol Bolas Dec 19 '11 at 7:06debugis false. It may well still be negligible, of course. – Steve Jessop Dec 19 '11 at 10:30