Skip to content
This repository was archived by the owner on May 18, 2024. It is now read-only.

Commit 90941f9

Browse files
committed
fix compiling with GCC 7
Fix two issues below: error: this statement may fall through [-Werror=implicit-fallthrough=] error: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Werror=cpp]
1 parent 28ae396 commit 90941f9

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/modp_ascii.c

+9
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,13 @@ void modp_toupper_copy(char* dest, const char* str, size_t len)
4040
switch (leftover) {
4141
case 3:
4242
*dest++ = (char)gsToUpperMap[ustr[i++]];
43+
/* fall through */
4344
case 2:
4445
*dest++ = (char)gsToUpperMap[ustr[i++]];
46+
/* fall through */
4547
case 1:
4648
*dest++ = (char)gsToUpperMap[ustr[i]];
49+
/* fall through */
4750
case 0:
4851
*dest = '\0';
4952
}
@@ -75,10 +78,13 @@ void modp_tolower_copy(char* dest, const char* str, size_t len)
7578
switch (leftover) {
7679
case 3:
7780
*dest++ = (char)gsToLowerMap[ustr[i++]];
81+
/* fall through */
7882
case 2:
7983
*dest++ = (char)gsToLowerMap[ustr[i++]];
84+
/* fall through */
8085
case 1:
8186
*dest++ = (char)gsToLowerMap[ustr[i]];
87+
/* fall through */
8288
case 0:
8389
*dest = '\0';
8490
}
@@ -121,10 +127,13 @@ void modp_toprint_copy(char* dest, const char* str, size_t len)
121127
switch (leftover) {
122128
case 3:
123129
*dest++ = (char)gsToPrintMap[s[i++]];
130+
/* fall through */
124131
case 2:
125132
*dest++ = (char)gsToPrintMap[s[i++]];
133+
/* fall through */
126134
case 1:
127135
*dest++ = (char)gsToPrintMap[s[i]];
136+
/* fall through */
128137
case 0:
129138
*dest = '\0';
130139
}

test/speedtest_numtoa.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* trick gcc to accepting snprintf which is a C99-ism
33
*/
44
#define _ISOC99_SOURCE
5-
#define _BSD_SOURCE
5+
#define _DEFAULT_SOURCE
66
#define _XOPEN_SOURCE 500
77
#define _POSIX_C_SOURCE 200112L
88
#include <stdint.h>

0 commit comments

Comments
 (0)