Merge pull request #776 from PhenomRetroShare/Fix_ClangWarnings

Fix clang warnings
This commit is contained in:
csoler 2017-04-18 20:27:20 +02:00 committed by GitHub
commit 5f969e7306
2 changed files with 4 additions and 3 deletions

View File

@ -103,8 +103,6 @@ int bdnet_inet_aton(const char *name, struct in_addr *addr);
int bdnet_checkTTL(int fd); int bdnet_checkTTL(int fd);
void bdsockaddr_clear(struct sockaddr_in *addr); void bdsockaddr_clear(struct sockaddr_in *addr);
/* thread-safe version of inet_ntoa */
std::string bdnet_inet_ntoa(struct in_addr in);
/* Extra stuff to declare for windows error handling (mimics unix errno) /* Extra stuff to declare for windows error handling (mimics unix errno)
*/ */
@ -175,4 +173,7 @@ int usleep(unsigned int usec);
} /* C Interface */ } /* C Interface */
#endif #endif
/* thread-safe version of inet_ntoa */
std::string bdnet_inet_ntoa(struct in_addr in);
#endif /* BITDHT_UNIVERSAL_NETWORK_HEADER */ #endif /* BITDHT_UNIVERSAL_NETWORK_HEADER */

View File

@ -147,7 +147,7 @@ again:
private: private:
static inline char *bintoasc() { static char bta[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; return bta ; } static inline char *bintoasc() { static char bta[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; return bta ; }
static inline char *asctobin() { static char s[256]; return s ; } /* runtime radix64_initd */ static inline uint8_t *asctobin() { static uint8_t s[256]; return s ; } /* runtime radix64_initd */
static int& is_radix64_initd() { static int is_inited = false ; return is_inited ; } static int& is_radix64_initd() { static int is_inited = false ; return is_inited ; }
/* hey, guess what: this is a read-only table. /* hey, guess what: this is a read-only table.