<html><head><meta http-equiv="content-type" content="text/html; charset=us-ascii"></head><body style="overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;"><br><div><br><blockquote type="cite"><div>On 19 May 2023, at 08:39, Chris Robinson <chris.kcat@gmail.com> wrote:</div><br class="Apple-interchange-newline"><div><span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;">There is, however, a small potential for API incompatibility, which is causing me some hesitation. ABI is fine, apps and binaries built using non-noexcept headers will still work without issue at runtime, but some C++ code made for non-noexcept headers could potentially have issues (re)compiling with updated noexcept headers. In particular, if the code had defined its own AL-like fallback functions or callbacks without noexcept, and tries to set them on function pointers with noexcept typedefs. The compiler won't like that since it'll see a potentially-throwing function set on a function pointer that's not allowed to throw when called. This can be fixed by the app adding noexcept to their fallback/callback functions, which they really should be anyway. And more generally, code written with the updated noexcept headers in mind will still work with non-noexcept headers.</span><br style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;"><br style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;"><br style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;"><span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;">So I'm looking for feedback. Making the functions and function pointer types noexcept for C++ would be beneficial, existing binaries would have no issues, and there's only a small possibility for fixable compile issues in existing code. But given that there can be issues, however minor, I wanted to get others' opinions before doing anything.</span></div></blockquote></div><br><div>Make the noexcept stuff (which I think is excellent to add) in some macros controlled by a define which can be set before including al.h? </div><div><br></div><div>Default to noexcept, but if someone sets OPENALSOFT_ENABLE_NOEXCEPT to 0, then have some macros which evaluate to empty?</div><div><br></div><div>A bit ugly, as will all preprocessor tricks, of course.</div><div><br></div><div>Kind regards,</div><div>James</div><div><br></div><div><br></div></body></html>