Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-06 | AK: Rename <AK/AKString.h> to <AK/String.h> | Andreas Kling | |
This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^) | |||
2019-07-24 | AK: Make HashMap::get(Key) return an Optional<Value>. | Andreas Kling | |
This allows HashMap::get() to be used for value types that cannot be default constructed (e.g NonnullOwnPtr.) | |||
2019-07-04 | Libraries: Create top level directory for libraries. | Andreas Kling | |
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/. |