1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-27 13:54:16 +01:00

[util] Include ostream in util_rc_ptr.h

This commit is contained in:
František Zatloukal 2020-01-31 13:31:19 +01:00 committed by Philip Rebohle
parent 1abacc947c
commit 976d3b5ee4

View File

@ -1,6 +1,7 @@
#pragma once
#include <functional>
#include <ostream>
namespace dxvk {
@ -120,4 +121,4 @@ namespace dxvk {
template<typename T>
std::ostream& operator << (std::ostream& os, const dxvk::Rc<T>& rc) {
return os << rc.ptr();
}
}