mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
fixed for mac improved readability
This commit is contained in:
@@ -36,11 +36,11 @@ namespace omath
|
||||
|
||||
public:
|
||||
[[nodiscard]]
|
||||
static std::span<std::byte>::const_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);
|
||||
|
||||
[[nodiscard]]
|
||||
static std::span<std::byte>::const_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;
|
||||
|
||||
template<class IteratorType>
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
#include <filesystem>
|
||||
#include <optional>
|
||||
#include <string_view>
|
||||
#include <vector>
|
||||
|
||||
namespace omath
|
||||
{
|
||||
class PePatternScanner final
|
||||
|
||||
Reference in New Issue
Block a user