Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 742 Bytes

CONTRIBUTING.md

File metadata and controls

7 lines (5 loc) · 742 Bytes

Contributing

Contributions are very welcome for bug fixes particularly but also features that make sense to the project. Any existing issues labeled "help wanted" are free to be pursued. And don't hesitate to open new issues.

Before opening a pull request, please first run clang format on the code, then make sure that all tests pass and to add new tests where appropriate. See Testing.

C++ Guidelines

  • Use assert() instead of Q_ASSERT() because the former works properly on all platforms, including MSVC, and the latter does exit(1) instead of abort() in MSVC. Remember to include <cassert>.