Skip to content

Commit 73ef669

Browse files
committed
add missing inline in float3.h
1 parent 2acc895 commit 73ef669

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RadeonProRender/inc/Math/float3.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ namespace RadeonProRender
4646

4747
typedef float3 float4;
4848

49-
std::ostream& operator<<(std::ostream& os, const float3& o)
49+
inline std::ostream& operator<<(std::ostream& os, const float3& o)
5050
{
5151
os << "[" << o.x << ", " << o.y << ", " << o.z << ", " << o.w << "]";
5252
return os;

0 commit comments

Comments
 (0)