Skip to content
  • Brad King's avatar
    Avoid shadowing std::vector member · bcbb4626
    Brad King authored
    The cmProcess::Buffer class derives from std::vector.  We were using
    local variable 'data' in the GetLine method but this name shadowed a
    member of vector with GNU.  This renames it to 'text'.
    bcbb4626