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