/
auroraos
/
mirror_ada
Обзор
Документация
Войти
/
auroraos
/
mirror_ada
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
include/ada/errors.h
21 строка
513 B
Yagiz Nizipli
improve code documentation (#1055)
07 янв 2026, 02:08
Не верифицирован
07 янв 2026, 02:08
9cf6627
Код
Авторство
О чём код?
/** * @file errors.h * @brief Error type definitions for URL parsing. * * Defines the error codes that can be returned when URL parsing fails. */ #ifndef ADA_ERRORS_H #define ADA_ERRORS_H #include <cstdint> namespace ada { /** * @brief Error codes for URL parsing operations. * * Used with `tl::expected` to indicate why a URL parsing operation failed. */ enum class errors : uint8_t { type_error /**< A type error occurred (e.g., invalid URL syntax). */ }; } // namespace ada #endif // ADA_ERRORS_H