@@ -718,33 +718,33 @@ INSTANTIATE_TEST_SUITE_P(GetEolCases
718718 GetEolTestParam{ CODE_SJIS , EEolType::cr_and_lf, " \r\n " },
719719 GetEolTestParam{ CODE_SJIS , EEolType::line_feed, " \n " },
720720 GetEolTestParam{ CODE_SJIS , EEolType::carriage_return, " \r " },
721- GetEolTestParam{ CODE_SJIS , EEolType::next_line, " " }, // 👈バグ。存在しないのでstd::nulloptを返すべき
722- GetEolTestParam{ CODE_SJIS , EEolType::line_separator, " " }, // 👈バグ。存在しないのでstd::nulloptを返すべき
723- GetEolTestParam{ CODE_SJIS , EEolType::paragraph_separator, " " }, // 👈バグ。存在しないのでstd::nulloptを返すべき
721+ GetEolTestParam{ CODE_SJIS , EEolType::next_line, {} },
722+ GetEolTestParam{ CODE_SJIS , EEolType::line_separator, {} },
723+ GetEolTestParam{ CODE_SJIS , EEolType::paragraph_separator, {} },
724724
725725 GetEolTestParam{ CODE_JIS , EEolType::none, {} },
726726 GetEolTestParam{ CODE_JIS , EEolType::cr_and_lf, " \r\n " },
727727 GetEolTestParam{ CODE_JIS , EEolType::line_feed, " \n " },
728728 GetEolTestParam{ CODE_JIS , EEolType::carriage_return, " \r " },
729- GetEolTestParam{ CODE_JIS , EEolType::next_line, " " }, // 👈バグ。存在しないのでstd::nulloptを返すべき
730- GetEolTestParam{ CODE_JIS , EEolType::line_separator, " " }, // 👈バグ。存在しないのでstd::nulloptを返すべき
731- GetEolTestParam{ CODE_JIS , EEolType::paragraph_separator, " " }, // 👈バグ。存在しないのでstd::nulloptを返すべき
729+ GetEolTestParam{ CODE_JIS , EEolType::next_line, {} },
730+ GetEolTestParam{ CODE_JIS , EEolType::line_separator, {} },
731+ GetEolTestParam{ CODE_JIS , EEolType::paragraph_separator, {} },
732732
733733 GetEolTestParam{ CODE_EUC , EEolType::none, {} },
734734 GetEolTestParam{ CODE_EUC , EEolType::cr_and_lf, " \r\n " },
735735 GetEolTestParam{ CODE_EUC , EEolType::line_feed, " \n " },
736736 GetEolTestParam{ CODE_EUC , EEolType::carriage_return, " \r " },
737- GetEolTestParam{ CODE_EUC , EEolType::next_line, " " }, // 👈バグ。存在しないのでstd::nulloptを返すべき
738- GetEolTestParam{ CODE_EUC , EEolType::line_separator, " " }, // 👈バグ。存在しないのでstd::nulloptを返すべき
739- GetEolTestParam{ CODE_EUC , EEolType::paragraph_separator, " " }, // 👈バグ。存在しないのでstd::nulloptを返すべき
737+ GetEolTestParam{ CODE_EUC , EEolType::next_line, {} },
738+ GetEolTestParam{ CODE_EUC , EEolType::line_separator, {} },
739+ GetEolTestParam{ CODE_EUC , EEolType::paragraph_separator, {} },
740740
741741 GetEolTestParam{ CODE_LATIN1 , EEolType::none, {} },
742742 GetEolTestParam{ CODE_LATIN1 , EEolType::cr_and_lf, " \r\n " },
743743 GetEolTestParam{ CODE_LATIN1 , EEolType::line_feed, " \n " },
744744 GetEolTestParam{ CODE_LATIN1 , EEolType::carriage_return, " \r " },
745- GetEolTestParam{ CODE_LATIN1 , EEolType::next_line, " " }, // 👈バグ。存在しないのでstd::nulloptを返すべき
746- GetEolTestParam{ CODE_LATIN1 , EEolType::line_separator, " " }, // 👈バグ。存在しないのでstd::nulloptを返すべき
747- GetEolTestParam{ CODE_LATIN1 , EEolType::paragraph_separator, " " }, // 👈バグ。存在しないのでstd::nulloptを返すべき
745+ GetEolTestParam{ CODE_LATIN1 , EEolType::next_line, {} },
746+ GetEolTestParam{ CODE_LATIN1 , EEolType::line_separator, {} },
747+ GetEolTestParam{ CODE_LATIN1 , EEolType::paragraph_separator, {} },
748748
749749 GetEolTestParam{ CODE_UTF7 , EEolType::none, {} },
750750 GetEolTestParam{ CODE_UTF7 , EEolType::cr_and_lf, " \r\n " },
0 commit comments