Skip to content

Commit d18e82b

Browse files
committed
Fixed constructor, spelling
1 parent 613d83e commit d18e82b

File tree

3 files changed

+2
-47
lines changed

3 files changed

+2
-47
lines changed

.github/actions/spelling/expect.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -658,6 +658,7 @@ TLMPACKET
658658
TLMPACKETIZER
659659
TLMPACKETIZERCOMPONENTIMPLCFG
660660
TLMPACKETIZERTYPES
661+
tmpl
661662
TODOLIST
662663
TOKENBUCKETTESTER
663664
topologydefs

Fw/Types/StructSerializable.cpp

Lines changed: 0 additions & 46 deletions
This file was deleted.

Fw/Types/StructSerializable.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Fw {
1414
SERIALIZED_SIZE = sizeof(T)
1515
};
1616

17-
StructSerializable();
17+
StructSerializable() {}
1818
StructSerializable(const T& val) { this->m_val = val; }
1919
StructSerializable(const T* val) { this->m_val = *val; }
2020
const T& operator=(const T& val) { this->m_val = val; return val;}

0 commit comments

Comments
 (0)