Skip to content
  • Travis Reitter's avatar
    Maximize use of the 'var' keyword. · b93b4445
    Travis Reitter authored
    This is used whenever a variable:
    1. is declared and initialized in the same line
    AND
    2. would not avoid a copy by using the 'unowned'. In the future, we may be able
    to declare variables 'unowned var', in which case this point won't matter. See
    bgo#638199.
    
    The net benefit is less noise on variable declaration lines.
    
    Helps bgo#629083
    b93b4445