Skip to content

Commit

Permalink
export-TypedAttribute-value.patch
Browse files Browse the repository at this point in the history
  • Loading branch information
TodicaIonut authored Feb 1, 2024
1 parent 594242d commit 04cf0f0
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
--- a/src/lib/OpenEXR/ImfAttribute.h
+++ b/src/lib/OpenEXR/ImfAttribute.h
@@ -215,14 +215,14 @@
}

template <class T>
-inline T&
+T&
TypedAttribute<T>::value ()
{
return _value;
}

template <class T>
-inline const T&
+const T&
TypedAttribute<T>::value () const
{
return _value;

0 comments on commit 04cf0f0

Please sign in to comment.