Quuxplusone added inline comments.
Herald added a subscriber: rnkovacs.

================
Comment at: clang/lib/AST/ASTImporter.cpp:1152
+  if (Error E = importSeq(ToElementType, ToSizeExpr))
+    return std::move(E);
 
----------------
As the author of [P1155 "More Implicit Move"](https://wg21.link/p1155), I would 
expect that you don't need `return std::move(E)` — `return E` should just as 
well perform "implicit move" in C++11 and later, assuming that 
`llvm::Expected<QualType>` has a valid constructor from `llvm::Error&&`.

You're not seeing any compiler diagnostic that //suggests// you use `std::move` 
here, are you?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D73675/new/

https://reviews.llvm.org/D73675



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to