Skip to content
  • Hyrum Wright's avatar
    35cb7e9f
    [clang-tidy] Add the abseil-duration-subtraction check · 35cb7e9f
    Hyrum Wright authored
    Summary:
    This check uses the context of a subtraction expression as well as knowledge
    about the Abseil Time types, to infer the type of the second operand of some
    subtraction expressions in Duration conversions. For example:
    
       absl::ToDoubleSeconds(duration) - foo
    
    can become
       absl::ToDoubleSeconds(duration - absl::Seconds(foo))
    
    This ensures that time calculations are done in the proper domain, and also
    makes it easier to further deduce the types of the second operands to these
    expressions.
    
    Reviewed By: JonasToth
    
    Tags: #clang-tools-extra
    
    Differential Revision: https://reviews.llvm.org/D55245
    
    llvm-svn: 349073
    35cb7e9f
    [clang-tidy] Add the abseil-duration-subtraction check
    Hyrum Wright authored
    Summary:
    This check uses the context of a subtraction expression as well as knowledge
    about the Abseil Time types, to infer the type of the second operand of some
    subtraction expressions in Duration conversions. For example:
    
       absl::ToDoubleSeconds(duration) - foo
    
    can become
       absl::ToDoubleSeconds(duration - absl::Seconds(foo))
    
    This ensures that time calculations are done in the proper domain, and also
    makes it easier to further deduce the types of the second operands to these
    expressions.
    
    Reviewed By: JonasToth
    
    Tags: #clang-tools-extra
    
    Differential Revision: https://reviews.llvm.org/D55245
    
    llvm-svn: 349073
Loading