Don't include ostream in rdcstr.h

* It's only needed for renderdoccmd and catch tests, so define it locally where
  needed.
This commit is contained in:
baldurk
2019-12-02 11:15:07 +00:00
parent f42d718ffa
commit 8db0811678
3 changed files with 10 additions and 6 deletions
+5
View File
@@ -34,6 +34,11 @@
#include "official/catch.hpp"
inline std::ostream &operator<<(std::ostream &os, rdcstr const &str)
{
return os << str.c_str();
}
namespace Catch
{
template <>