fix compiler warnings and auto-formatting #598
Reference in New Issue
Block a user
Delete Branch "eive/fsfw:mueller/compiler-warning-fixes-upstream-2"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
nullptrdereferences found when building in release mode@@ -11,3 +11,3 @@HybridIterator(typename LinkedElement<T>::Iterator *iter): LinkedElement<T>::Iterator(*iter), value(iter->value), linked(true) {}: LinkedElement<T>::Iterator(*iter), value(iter->value), linked(true) {value is set here before the new check.
Hmm, I guess I forgot to completely recompile everything..
@@ -31,3 +31,3 @@}if (iter.value == NULL) {if (iter.value ==nullptr) {looks like clang format is not apllied.
See comments for requested changes.
fix compiler warningsto fix compiler warnings and auto-formattingLGTM