Multiple definitions
This commit is contained in:
+2
-2
@@ -24,7 +24,7 @@
|
||||
namespace uWS {
|
||||
namespace utils {
|
||||
|
||||
int u32toaHex(uint32_t value, char *dst) {
|
||||
inline int u32toaHex(uint32_t value, char *dst) {
|
||||
char palette[] = "0123456789abcdef";
|
||||
char temp[10];
|
||||
char *p = temp;
|
||||
@@ -42,7 +42,7 @@ int u32toaHex(uint32_t value, char *dst) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
int u32toa(uint32_t value, char *dst) {
|
||||
inline int u32toa(uint32_t value, char *dst) {
|
||||
char temp[10];
|
||||
char *p = temp;
|
||||
do {
|
||||
|
||||
Reference in New Issue
Block a user