Skip to content

Commit

Permalink
fix(frameio): fix nodiscard position to appease clang
Browse files Browse the repository at this point in the history
  • Loading branch information
iboB committed Jan 25, 2025
1 parent f858ade commit 9b9eeae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frame/code/ac/frameio/local/SyncIo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
namespace ac::frameio {
// create a synchronous session which can use the thread of its peer for its execution
// return a function that will execute the pending taasks of the session executor
AC_FRAME_EXPORT [[nodiscard]] std::function<void()> Session_connectSync(SessionHandlerPtr handler, StreamEndpoint endpoint);
[[nodiscard]] AC_FRAME_EXPORT std::function<void()> Session_connectSync(SessionHandlerPtr handler, StreamEndpoint endpoint);
} // namespace ac::frameio

0 comments on commit 9b9eeae

Please sign in to comment.