Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upWarnings in Codegen #386
Closed
Warnings in Codegen #386
Comments
Meta-phaze
added a commit
to Meta-phaze/servo
that referenced
this issue
Apr 20, 2013
glennw
pushed a commit
to glennw/servo
that referenced
this issue
Jan 16, 2017
Support antialiasing option in mac font rasterizer. This fixes a number of wpt/css tests when running WR under CI. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/webrender/386) <!-- Reviewable:end -->
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are a number of warnings of unused variables in the webIDL bindings codegen. Newer rust will include a new lint called 'unused_variable'[1] that will silence these warnings. The codegen (I think) can't have the prototypes of the functions changed so the functions that don't use the input variables are acceptable and not warnings.
[1] alexcrichton/rust@3e67085