Skip to content
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

Fix compile error for non-void-returning inplace_functions #717

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion teensy3/inplace_function.h
Expand Up @@ -3,7 +3,7 @@
// https://github.com/WG21-SG14/SG14/blob/master/SG14/inplace_function.h
//
// For use with Teensy, allow uninitialized to be no-operation without error
#define SG14_INPLACE_FUNCTION_THROW(x)
#define SG14_INPLACE_FUNCTION_THROW(x) return static_cast<R>(0)

/*
* Boost Software License - Version 1.0 - August 17th, 2003
Expand Down
2 changes: 1 addition & 1 deletion teensy4/inplace_function.h
Expand Up @@ -3,7 +3,7 @@
// https://github.com/WG21-SG14/SG14/blob/master/SG14/inplace_function.h
//
// For use with Teensy, allow uninitialized to be no-operation without error
#define SG14_INPLACE_FUNCTION_THROW(x)
#define SG14_INPLACE_FUNCTION_THROW(x) return static_cast<R>(0)

/*
* Boost Software License - Version 1.0 - August 17th, 2003
Expand Down