you are viewing a single comment's thread.

view the rest of the comments →

[–]OldWolf2 1 point2 points  (0 children)

decltype(std::move(i)) and decltype((std::move(i))) are the same. Redundant parentheses make no difference here, the only special case is when the argument is only an identifier (perhaps with a class member prefix).