From cf91ead01b044786b71427180d43e5770f2d05af Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 19 Oct 2019 05:32:18 -0400 Subject: [PATCH] IStream: Remove unimplemented operator<< prototype The proper prototype and implementation lies within Global.cpp/.hpp, which takes a const reference rather than a non-const reference. --- include/athena/IStream.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/athena/IStream.hpp b/include/athena/IStream.hpp index d8d6de0..9d1a794 100644 --- a/include/athena/IStream.hpp +++ b/include/athena/IStream.hpp @@ -3,7 +3,6 @@ #include "athena/Global.hpp" namespace athena::io { -std::ostream& operator<<(std::ostream& os, Endian& endian); class IStream { public: