#include "fixed_point.h" fp_t fp_t::operator+(const fp_t& other) const { return {(int32_t)((uint32_t)raw + (uint32_t)other.raw)}; } bool fp_t::operator==(const fp_t& other) const { return raw == other.raw; }