Skip to content
  • Carsten Gräser's avatar
    Fix flatVectorView() for r-values · 474e1e66
    Carsten Gräser authored
    Forwarding an r-value reference requires to use std::move
    or std::forward. Since there are explicit overloads for
    const and mutable references, this overload is only used
    for real r-values. Hence we can safely use std::move which
    is more instructive.
    474e1e66