You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In many places in Variorum, I see declarations made as unsigned var, without the datatype being explicitly specified.
This defaults to unsigned int , and is functionally correct (unsigned is a datatype), but is not considered good engineering practice, esp because we're not consistent with its usage. As part of cleanup, I'd like to change these from unsigned to unsigned int.
In many places in Variorum, I see declarations made as
unsigned var
, without the datatype being explicitly specified.This defaults to
unsigned int
, and is functionally correct (unsigned
is a datatype), but is not considered good engineering practice, esp because we're not consistent with its usage. As part of cleanup, I'd like to change these fromunsigned
tounsigned int
.See here as some examples:
variorum/src/variorum/config_architecture.h
Lines 321 to 324 in f7bb01f
variorum/src/variorum/Intel/counters_features.c
Lines 539 to 541 in f7bb01f
The text was updated successfully, but these errors were encountered: