diff options
author | Andreas Kling <kling@serenityos.org> | 2021-03-12 17:29:37 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-12 17:29:37 +0100 |
commit | ef1e5db1d063f55e57b1d7623ea7154583fc95ad (patch) | |
tree | fb92514e07f4017cb899258137c817c07da9d5c5 /Userland/Libraries/LibGfx/AffineTransform.cpp | |
parent | 423ed5339651a2646c64ee4fd7b3b32bb7f8c942 (diff) | |
download | serenity-ef1e5db1d063f55e57b1d7623ea7154583fc95ad.zip |
Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)
Good-bye LogStream. Long live AK::Format!
Diffstat (limited to 'Userland/Libraries/LibGfx/AffineTransform.cpp')
-rw-r--r-- | Userland/Libraries/LibGfx/AffineTransform.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Userland/Libraries/LibGfx/AffineTransform.cpp b/Userland/Libraries/LibGfx/AffineTransform.cpp index 29236b83f0..0f4bca708e 100644 --- a/Userland/Libraries/LibGfx/AffineTransform.cpp +++ b/Userland/Libraries/LibGfx/AffineTransform.cpp @@ -24,7 +24,6 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include <AK/LogStream.h> #include <AK/Optional.h> #include <LibGfx/AffineTransform.h> #include <LibGfx/Rect.h> @@ -158,18 +157,4 @@ IntRect AffineTransform::map(const IntRect& rect) const return enclosing_int_rect(map(FloatRect(rect))); } -const LogStream& operator<<(const LogStream& stream, const AffineTransform& value) -{ - if (value.is_identity()) - return stream << "{ Identity }"; - - return stream << "{ " - << value.a() << ", " - << value.b() << ", " - << value.c() << ", " - << value.d() << ", " - << value.e() << ", " - << value.f() << " }"; -} - } |