mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
Removes ReSharper disable comments
Removes the `ReSharper disable CppInconsistentNaming` comments from the header file.
This commit is contained in:
@@ -9,17 +9,13 @@
|
|||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
// ReSharper disable once CppInconsistentNaming
|
// ReSharper disable CppInconsistentNaming
|
||||||
class unit_test_pattern_scan_read_test_Test;
|
class unit_test_pattern_scan_read_test_Test;
|
||||||
// ReSharper disable once CppInconsistentNaming
|
|
||||||
class unit_test_pattern_scan_corner_case_1_Test;
|
class unit_test_pattern_scan_corner_case_1_Test;
|
||||||
// ReSharper disable once CppInconsistentNaming
|
|
||||||
class unit_test_pattern_scan_corner_case_2_Test;
|
class unit_test_pattern_scan_corner_case_2_Test;
|
||||||
// ReSharper disable once CppInconsistentNaming
|
|
||||||
class unit_test_pattern_scan_corner_case_3_Test;
|
class unit_test_pattern_scan_corner_case_3_Test;
|
||||||
// ReSharper disable once CppInconsistentNaming
|
|
||||||
class unit_test_pattern_scan_corner_case_4_Test;
|
class unit_test_pattern_scan_corner_case_4_Test;
|
||||||
|
// ReSharper restore CppInconsistentNaming
|
||||||
namespace omath
|
namespace omath
|
||||||
{
|
{
|
||||||
enum class PatternScanError
|
enum class PatternScanError
|
||||||
@@ -37,11 +33,11 @@ namespace omath
|
|||||||
public:
|
public:
|
||||||
[[nodiscard]]
|
[[nodiscard]]
|
||||||
static std::span<std::byte>::iterator scan_for_pattern(const std::span<std::byte>& range,
|
static std::span<std::byte>::iterator scan_for_pattern(const std::span<std::byte>& range,
|
||||||
const std::string_view& pattern);
|
const std::string_view& pattern);
|
||||||
|
|
||||||
[[nodiscard]]
|
[[nodiscard]]
|
||||||
static std::span<std::byte>::iterator scan_for_pattern(std::span<std::byte>&& range,
|
static std::span<std::byte>::iterator scan_for_pattern(std::span<std::byte>&& range,
|
||||||
const std::string_view& pattern) = delete;
|
const std::string_view& pattern) = delete;
|
||||||
|
|
||||||
template<class IteratorType>
|
template<class IteratorType>
|
||||||
requires std::input_or_output_iterator<std::remove_cvref_t<IteratorType>>
|
requires std::input_or_output_iterator<std::remove_cvref_t<IteratorType>>
|
||||||
|
|||||||
Reference in New Issue
Block a user