Skip to content
  • Brad King's avatar
    Merge topic 'consistent-empty-method' · 9de2ab7f
    Brad King authored and Kitware Robot's avatar Kitware Robot committed
    5f69314e Replace foo.length() pattern with !foo.empty().
    fd0c036c Replace 'foo.length() >= 1' pattern with !foo.empty()
    f09fde2d Replace 'foo.length() > 0' pattern with !foo.empty().
    86b5bdfa Replace 'foo.length() == 0' pattern with foo.empty().
    fd7b3712 Replace foo.size() pattern with !foo.empty().
    aa773035 Replace !foo.size() pattern with foo.empty().
    64592633 cmListCommand: Use empty() and expand whitespace.
    607e1938 Replace 'foo.size() != 0' pattern with !foo.empty().
    930bd478 Replace 'foo.size() == 0' pattern with foo.empty().
    d92887ef Replace 'foo.size() > 0' pattern with !foo.empty().
    9de2ab7f