summaryrefslogtreecommitdiff
path: root/AK/OSError.h
AgeCommit message (Collapse)Author
2021-11-08AK: Remove now-unused OSError classAndreas Kling
This has been superseded by the more generally useful AK::Error :^)
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-03-12Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)Andreas Kling
Good-bye LogStream. Long live AK::Format!
2021-01-10AK: Add AK::OSError, a wrapper for errno codesAndreas Kling
This is a strongly typed carrier for "errno" error codes, intended for use in return types, e.g Result<String, OSError>.