Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
uv_type: supress
-Werror=unused
compiler errors
The `uv_type()` constructor does not use its `token` parameter, which causes a `-Werror=unused` compiler error on GCC (and probably on other compilers too). Luckily, C++17 adds the [`[[maybe_unused]]`][1] attribute that all standards compliant compilers will support to hide unused errors. [1]: https://en.cppreference.com/w/cpp/language/attributes/maybe_unused on-behalf-of: @nqminds <[email protected]>
- Loading branch information