fktn-k / fkYAML

A C++ header-only YAML library
MIT License
69 stars 7 forks source link

Avoid using unintended C++14 features #266

Closed fktn-k closed 10 months ago

fktn-k commented 10 months ago

As reported in #262, some jobs on GitHub Actions are not running unit tests since fkYAML unintendedly use C++14 features like binary integer literals and constexpr method with if statements.
To keep fkYAML compatible with C++11, this PR has removed those keywords for now.
What "for now" means is that fkYAML might introduce compile-time features in the future.


Pull Request Checklist

Read the CONTRIBUTING.md file for detailed information.

Please don't