@@ -395,7 +395,7 @@ fun_so_to_utf_32(void *statep, const unsigned char *s, size_t l, unsigned char *
395395 return fun_so_to_utf_32be(statep, s, l, o, osize);
396396}
397397
398- static const rb_transcoder
398+ static rb_transcoder
399399rb_from_UTF_16BE = {
400400 "UTF-16BE", "UTF-8", from_UTF_16BE,
401401 TRANSCODE_TABLE_INFO,
@@ -407,7 +407,7 @@ rb_from_UTF_16BE = {
407407 NULL, NULL, NULL, fun_so_from_utf_16be
408408};
409409
410- static const rb_transcoder
410+ static rb_transcoder
411411rb_to_UTF_16BE = {
412412 "UTF-8", "UTF-16BE", from_UTF_8,
413413 TRANSCODE_TABLE_INFO,
@@ -419,7 +419,7 @@ rb_to_UTF_16BE = {
419419 NULL, NULL, NULL, fun_so_to_utf_16be
420420};
421421
422- static const rb_transcoder
422+ static rb_transcoder
423423rb_from_UTF_16LE = {
424424 "UTF-16LE", "UTF-8", from_UTF_16LE,
425425 TRANSCODE_TABLE_INFO,
@@ -431,7 +431,7 @@ rb_from_UTF_16LE = {
431431 NULL, NULL, NULL, fun_so_from_utf_16le
432432};
433433
434- static const rb_transcoder
434+ static rb_transcoder
435435rb_to_UTF_16LE = {
436436 "UTF-8", "UTF-16LE", from_UTF_8,
437437 TRANSCODE_TABLE_INFO,
@@ -443,7 +443,7 @@ rb_to_UTF_16LE = {
443443 NULL, NULL, NULL, fun_so_to_utf_16le
444444};
445445
446- static const rb_transcoder
446+ static rb_transcoder
447447rb_from_UTF_32BE = {
448448 "UTF-32BE", "UTF-8", from_UTF_32BE,
449449 TRANSCODE_TABLE_INFO,
@@ -455,7 +455,7 @@ rb_from_UTF_32BE = {
455455 NULL, NULL, NULL, fun_so_from_utf_32be
456456};
457457
458- static const rb_transcoder
458+ static rb_transcoder
459459rb_to_UTF_32BE = {
460460 "UTF-8", "UTF-32BE", from_UTF_8,
461461 TRANSCODE_TABLE_INFO,
@@ -467,7 +467,7 @@ rb_to_UTF_32BE = {
467467 NULL, NULL, NULL, fun_so_to_utf_32be
468468};
469469
470- static const rb_transcoder
470+ static rb_transcoder
471471rb_from_UTF_32LE = {
472472 "UTF-32LE", "UTF-8", from_UTF_32LE,
473473 TRANSCODE_TABLE_INFO,
@@ -479,7 +479,7 @@ rb_from_UTF_32LE = {
479479 NULL, NULL, NULL, fun_so_from_utf_32le
480480};
481481
482- static const rb_transcoder
482+ static rb_transcoder
483483rb_to_UTF_32LE = {
484484 "UTF-8", "UTF-32LE", from_UTF_8,
485485 TRANSCODE_TABLE_INFO,
@@ -491,7 +491,7 @@ rb_to_UTF_32LE = {
491491 NULL, NULL, NULL, fun_so_to_utf_32le
492492};
493493
494- static const rb_transcoder
494+ static rb_transcoder
495495rb_from_UTF_16 = {
496496 "UTF-16", "UTF-8", from_UTF_16,
497497 TRANSCODE_TABLE_INFO,
@@ -503,7 +503,7 @@ rb_from_UTF_16 = {
503503 NULL, fun_si_from_utf_16, NULL, fun_so_from_utf_16
504504};
505505
506- static const rb_transcoder
506+ static rb_transcoder
507507rb_from_UTF_32 = {
508508 "UTF-32", "UTF-8", from_UTF_32,
509509 TRANSCODE_TABLE_INFO,
@@ -515,7 +515,7 @@ rb_from_UTF_32 = {
515515 NULL, fun_si_from_utf_32, NULL, fun_so_from_utf_32
516516};
517517
518- static const rb_transcoder
518+ static rb_transcoder
519519rb_to_UTF_16 = {
520520 "UTF-8", "UTF-16", from_UTF_8,
521521 TRANSCODE_TABLE_INFO,
@@ -527,7 +527,7 @@ rb_to_UTF_16 = {
527527 NULL, NULL, NULL, fun_so_to_utf_16
528528};
529529
530- static const rb_transcoder
530+ static rb_transcoder
531531rb_to_UTF_32 = {
532532 "UTF-8", "UTF-32", from_UTF_8,
533533 TRANSCODE_TABLE_INFO,
0 commit comments