mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 15:28:39 +09:00
Make MAX_CSS_VAR_LENGTH unsigned to avoid warnings.
Follow-up for #891. Tag #457.
This commit is contained in:
parent
651f0bfce6
commit
f09b84deb0
1 changed files with 1 additions and 1 deletions
|
|
@ -1551,7 +1551,7 @@ protected:
|
|||
nsCSSExpandedDataBlock mData;
|
||||
|
||||
// Value to make sure our resolved variable results stay within sane limits.
|
||||
const int32_t MAX_CSS_VAR_LENGTH = 10240;
|
||||
const uint32_t MAX_CSS_VAR_LENGTH = 10240;
|
||||
|
||||
public:
|
||||
// Used from nsCSSParser constructors and destructors
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue