diff --git a/inc/framework/common/debug/log.h b/inc/framework/common/debug/log.h index 2e5a8566..249271a6 100644 --- a/inc/framework/common/debug/log.h +++ b/inc/framework/common/debug/log.h @@ -276,6 +276,7 @@ std::string FmtToStr(const T &t) { std::string fmt; std::stringstream st; st << "[" << t << "]"; + fmt = st.str(); return fmt; }