COMMON: Rename Common::Debug to Common::StreamDebug

This commit is contained in:
Paweł Kołodziejski 2020-10-16 21:47:16 +02:00
parent 985335154e
commit e2cd2e6ed7
12 changed files with 47 additions and 47 deletions

View file

@ -171,7 +171,7 @@ Angle Angle::arcTangent2(float y, float x) {
return a;
}
Common::Debug &operator<<(Common::Debug &dbg, const Math::Angle &a) {
Common::StreamDebug &operator<<(Common::StreamDebug &dbg, const Math::Angle &a) {
dbg.nospace() << "Angle(" << a.getDegrees(-180) << ")";
return dbg.space();