1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:07:34 +00:00

Kernel: Remove validate_read_str() as nothing uses it anymore :^)

This commit is contained in:
Andreas Kling 2020-01-11 10:57:38 +01:00
parent f5092b1c7e
commit 0ca6d6c8d2
2 changed files with 0 additions and 8 deletions

View file

@ -256,7 +256,6 @@ public:
bool validate_read(const void*, ssize_t) const;
bool validate_write(void*, ssize_t) const;
bool validate_read_str(const char* str);
template<typename T>
bool validate_read_typed(T* value, size_t count = 1) { return validate_read(value, sizeof(T) * count); }
template<typename T>