From: Marcelo E. M. <mar...@bi...> - 2001-03-24 19:23:09
|
>> "Sven M. Hallberg" <pe...@gm...> writes: > But what about __FILE__ and __LINE__? Preprocessor macros. __FUNCTION__ is defined by the compiler because the preprocessor doesn't know about functions. Conversely, the compiler doesn't know about __FILE__ and __LINE__ because its input has been preprocessed (it gets the info via #line directives) -- Marcelo |