1
0
forked from fsfw/fsfw

Merge remote-tracking branch 'upstram/master' into mueller_localPoolNeat

This commit is contained in:
2020-05-29 17:08:39 +02:00
4 changed files with 29 additions and 1 deletions

View File

@ -48,6 +48,10 @@ union store_address_t {
* Alternative access to the raw value.
*/
uint32_t raw;
bool operator==(const store_address_t& other) const {
return raw == other.raw;
}
};
/**