Do not use namespace using-directives according to Google style guidelines "build/namespaces"
This commit is contained in:
parent
67d8bf7fb0
commit
6666dc0294
12 changed files with 112 additions and 97 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue