Skip to content

Commit 06bfbfd

Browse files
committed
Removed unused code.
1 parent 7c8dcce commit 06bfbfd

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2020.09.29 Kentaro Fukuchi <[email protected]>
2+
[develop]
3+
* qrencode.c:
4+
- Removed unused code.
5+
16
2020.09.28 Kentaro Fukuchi <[email protected]>
27
[hotfix]
38
* qrinput.c, tests/test_estimatebit.c:

qrencode.c

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -790,20 +790,6 @@ int QRcode_List_size(QRcode_List *qrlist)
790790
return size;
791791
}
792792

793-
#if 0
794-
static unsigned char QRcode_parity(const char *str, int size)
795-
{
796-
unsigned char parity = 0;
797-
int i;
798-
799-
for(i = 0; i < size; i++) {
800-
parity ^= str[i];
801-
}
802-
803-
return parity;
804-
}
805-
#endif
806-
807793
QRcode_List *QRcode_encodeInputStructured(QRinput_Struct *s)
808794
{
809795
QRcode_List *head = NULL;

0 commit comments

Comments
 (0)