-
Notifications
You must be signed in to change notification settings - Fork 624
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
Remove deprecated argument to getChunkOffsetTableSize() #988
Remove deprecated argument to getChunkOffsetTableSize() #988
Conversation
Signed-off-by: Cary Phillips <[email protected]>
@peterhillman, can you take a look at this? |
@@ -442,7 +442,7 @@ bool usesLongNames (const Header &header); | |||
// | |||
|
|||
IMF_EXPORT | |||
int getChunkOffsetTableSize(const Header& header,bool deprecated_attribute=false); | |||
int getChunkOffsetTableSize(const Header& header); |
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.
Should the comment about the deprecated_attribute be removed (line 440) as well as the parameter itself?
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.
Done, thanks.
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
Signed-off-by: Cary Phillips <[email protected]>
* Remove deprecated argument to getChunkOffsetTableSize() Signed-off-by: Cary Phillips <[email protected]> * Remove mention of deprecated_attribute from comment Signed-off-by: Cary Phillips <[email protected]>
Resolves #740 in time for the 3.0 release.
Signed-off-by: Cary Phillips [email protected]