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

Add PICOJSON_NO_EXCEPTIONS define to optionally remove throw-catch #99

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

crashmatt
Copy link

For compatibility with builds for resource restricted systems which don't support exceptions

@crashmatt
Copy link
Author

Typo fix also included other changes that I didn't intent to make. Closing this until I get the PR fixed.

@crashmatt crashmatt closed this Apr 19, 2017
@crashmatt crashmatt reopened this Apr 19, 2017
value(value &&x) throw();
value &operator=(value &&x) throw();
#else
value(value &&x) value &operator=(value &&x)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line needs to be fixed to:

  value(value &&x);
  value &operator=(value &&x);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants