-
Notifications
You must be signed in to change notification settings - Fork 626
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OpenEXR/ImfStdIO.[cpp h]: Added StdISStream. #638
OpenEXR/ImfStdIO.[cpp h]: Added StdISStream. #638
Conversation
This class was missing; ie the "input" stringstream version of StdOSStream. Based off istringstream. Signed-off-by: Arkell Rasiah <[email protected]>
I hate to be a pest, but could you add a test for this? In IlmImfTest/testExistingStreams.cpp? It could sit alongside the existing tests. |
np... i will put together something... if i recall right stdostream didnt hv a test of it too... so will roll something that does both.
… On Feb 5, 2020, at 08:30, Cary Phillips ***@***.***> wrote:
I hate to be a pest, but could you add a test for this? In IlmImfTest/testExistingStreams.cpp? It could sit alongside the existing tests.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Pinging @arkellr again, any chance you can find some time to put a test together for this? |
... actually made a ticket for this in my current work sprint... and actually will likely start on it tomorrow...
… On Feb 25, 2020, at 20:44, Cary Phillips ***@***.***> wrote:
Pinging @arkellr again, any chance you can find some time to put a test together for this?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
…ream. Note I moved the "header" declaration into the scoped block that handles the writing since thats where its only used. Also cleaned up the compiler warning for "_pos < 0"; since _pos is an unsigned type. Signed-off-by: Arkell Rasiah <[email protected]>
Cary test case added for Imf::StdOSStream/StdISStream... let me know if you would like to do a zoom to review the updates to testExistingStreams.cpp. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This class was missing; ie the "input" stringstream version of StdOSStream.
Based off istringstream.
Signed-off-by: Arkell Rasiah [email protected]