CppCommon  1.0.4.1
C++ Common Library
system_source_location.cpp

Source location example

#include <iostream>
int main(int argc, char** argv)
{
std::cout << "Source location: " << __LOCATION__ << std::endl;
return 0;
}
Source location definition.
#define __LOCATION__
Current source location macro.