lib/nbt: Add missing class prefix to function names
parent
fc2caf3bc0
commit
8b1491c311
|
@ -905,32 +905,32 @@ namespace NBT {
|
|||
}
|
||||
}
|
||||
|
||||
ErrorOrVoid toRawData(std::vector<uint8_t>* rawData) {
|
||||
ErrorOrVoid List::toRawData(std::vector<uint8_t>* rawData) {
|
||||
#pragma message("TODO: Implement.")
|
||||
return ErrorOrVoid(true, ErrorCodes::UNIMPLEMENTED);
|
||||
}
|
||||
|
||||
ErrorOr<Generic*> getElementPointer(uint64_t position) {
|
||||
ErrorOr<Generic*> List::getElementPointer(uint64_t position) {
|
||||
#pragma message("TODO: Implement.")
|
||||
return ErrorOr<Generic*>(true, ErrorCodes::UNIMPLEMENTED);
|
||||
}
|
||||
|
||||
ErrorOrVoid setElementPointerAt(uint64_t position, Generic*) {
|
||||
ErrorOrVoid List::setElementPointerAt(uint64_t position, Generic*) {
|
||||
#pragma message("TODO: Implement.")
|
||||
return ErrorOrVoid(true, ErrorCodes::UNIMPLEMENTED);
|
||||
}
|
||||
|
||||
ErrorOrVoid appendPointer(Generic*) {
|
||||
ErrorOrVoid List::appendPointer(Generic*) {
|
||||
#pragma message("TODO: Implement.")
|
||||
return ErrorOrVoid(true, ErrorCodes::UNIMPLEMENTED);
|
||||
}
|
||||
|
||||
ErrorOrVoid deleteElement(uint64_t position) {
|
||||
ErrorOrVoid List::deleteElement(uint64_t position) {
|
||||
#pragma message("TODO: Implement.")
|
||||
return ErrorOrVoid(true, ErrorCodes::UNIMPLEMENTED);
|
||||
}
|
||||
|
||||
uint64_t length() {
|
||||
uint64_t List::length() {
|
||||
#pragma message("TODO: Implement.")
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue