Images 💾

Last commit ⭐

commit f8bdb584f8552f553c106fc7b32d5129913d8cd0
Author:     MacDue <macdue@dueutil.tech>
AuthorDate: Fri Feb 24 22:50:40 2023 +0000
Commit:     Linus Groh <mail@linusgroh.de>
CommitDate: Fri Feb 24 23:56:37 2023 +0100

    LibDeviceTree: Use unchecked_append() in path parsing
    
    try_append() checks if the vector should increase capacity and if
    so grows the vector. unchecked_append() verifies the vector already
    has enough capacity, and will never grow the vector.