Florian Agsteiner

Results 2 comments of Florian Agsteiner

``` /Volumes/XXX/XXX/XXX/Model/Database.swift:12:8: Module file was created by an older version of the compiler; rebuild 'Groot' and try again: /Users/xxx/Library/Developer/Xcode/DerivedData/XXX-fswyylxndaveorcrcizcjioeyfvk/Build/Products/Debug-iphonesimulator/Groot.framework/Modules/Groot.swiftmodule/x86_64.swiftmodule ``` I hope this helps

Found the bug in NULDBDB+Enumeration: ``` - (void)enumerateFromIndex:(uint64_t)start to:(uint64_t)limit block:(BOOL (^)(uint64_t key, NSData *value))block { Slice startSlice((char *)start, sizeof(uint64_t)); Slice limitSlice((char *)limit, sizeof(uint64_t)); NULDBIterateIndex(db, startSlice, limitSlice, block); } ``` should...