Possible Duplicate:
Why are unnamed namespaces used and what are their benefits?
namespace {
// EINTR sucks.
int close_no_eintr(int fd) {
int result;
do {
result = close(fd);
} while (result < 0 && errno == EINTR);
return result;
}
In the code above, why there is not a name after namespace in the first line?