You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The result of some methods like EbmlElement::SetSizeInfinite() or IOCallback::write() should be checked.
In the case of SetSizeInfinite() the function cannot fail when setting false, so we might split the call in 2 and only return an status when setting to infinite.
@nehebpointed out that unknown attributes should be ignored, so we can safely enable it (attributes are from C+11).
BTW plenty of C++ attributes like this are making their way into C23.
The text was updated successfully, but these errors were encountered:
robUx4
added
abi-break
breaks the ABI (e.g. programs linked against the library have to be recompiled)
api-break
breaks the API (e.g. programs using it will have to adjust their source code)
and removed
abi-break
breaks the ABI (e.g. programs linked against the library have to be recompiled)
labels
Dec 23, 2023
The result of some methods like
EbmlElement::SetSizeInfinite()
orIOCallback::write()
should be checked.In the case of SetSizeInfinite() the function cannot fail when setting false, so we might split the call in 2 and only return an status when setting to infinite.
@neheb pointed out that unknown attributes should be ignored, so we can safely enable it (attributes are from C+11).
BTW plenty of C++ attributes like this are making their way into C23.
The text was updated successfully, but these errors were encountered: