update io::Device::write

This commit is contained in:
MihailRis
2025-02-04 17:38:43 +03:00
parent 3e67d887f4
commit 1c98d6cb37
6 changed files with 50 additions and 12 deletions
+1
View File
@@ -5,6 +5,7 @@
#include <filesystem>
namespace io {
/// @brief Access violation error
class access_error : public std::runtime_error {
public:
access_error(const std::string& msg) : std::runtime_error(msg) {