Do not use namespace using-directives according to Google style guidelines "build/namespaces"

This commit is contained in:
Micke Prag 2012-06-15 18:24:06 +02:00
parent 67d8bf7fb0
commit 6666dc0294
12 changed files with 112 additions and 97 deletions

View file

@ -18,7 +18,7 @@
#define BUFSIZE 512
using namespace TelldusCore;
namespace TelldusCore {
int connectWrapper(int sockfd, const struct sockaddr *addr, socklen_t addrlen) {
return connect(sockfd, addr, addrlen);
@ -132,3 +132,5 @@ void Socket::write(const std::wstring &msg) {
d->connected = false;
}
}
} // namespace TelldusCore