I know, that my question is similar to this: Passing the caller __FILE__ __LINE__ to a function without using macro
But I'm wondering, why there is no c++ equivalent of caller file and line passing to a function.
Having classes, templates, default arguments and more strict const-correctness makes a lot of macro usage obsolete, but when I want to pass caller file and line to a function, I will go in trouble for 2 reasons: 1. Default arguments (hard to replace all kinds of calls with a macro), 2. Macros break class member name scope. (startTimer macro would be global)
Thinking about the default arguments to functions, why are there no default-args-style replacements for FILE and LINE macros? It could be done like this:
void startTimer(int type, int id=0, string file = _CALLER_::FILE, int line = _CALLER_::LINE)
If the compiler, while looking for function calls of startTimer, can replace the id parameter with 0, where it isn't mentioned, it should be possible to replace file and line with the corresponding CALLER members, which in this example depend on the file, being processed, and the line where the call is made - something that the compiler knows while parsing a cpp file.
Knowing the caller of a member function may be useful for debugging - on which file/line has something been called, which leads to a problem later.