diff --git a/include/omath/utility/pattern_scan.hpp b/include/omath/utility/pattern_scan.hpp index ae7c714..42dc083 100644 --- a/include/omath/utility/pattern_scan.hpp +++ b/include/omath/utility/pattern_scan.hpp @@ -9,17 +9,13 @@ #include #include -// ReSharper disable once CppInconsistentNaming +// ReSharper disable CppInconsistentNaming class unit_test_pattern_scan_read_test_Test; -// ReSharper disable once CppInconsistentNaming class unit_test_pattern_scan_corner_case_1_Test; -// ReSharper disable once CppInconsistentNaming class unit_test_pattern_scan_corner_case_2_Test; -// ReSharper disable once CppInconsistentNaming class unit_test_pattern_scan_corner_case_3_Test; -// ReSharper disable once CppInconsistentNaming class unit_test_pattern_scan_corner_case_4_Test; - +// ReSharper restore CppInconsistentNaming namespace omath { enum class PatternScanError @@ -37,11 +33,11 @@ namespace omath public: [[nodiscard]] static std::span::iterator scan_for_pattern(const std::span& range, - const std::string_view& pattern); + const std::string_view& pattern); [[nodiscard]] static std::span::iterator scan_for_pattern(std::span&& range, - const std::string_view& pattern) = delete; + const std::string_view& pattern) = delete; template requires std::input_or_output_iterator>