steveire marked 2 inline comments as done.
steveire added inline comments.

================
Comment at: clang-query/QueryParser.cpp:33
+  if (Line.empty())
+    return StringRef(Line.begin(), 0);
 
----------------
aaron.ballman wrote:
> Why not just return `Line`?
It is the pre-existing behavior to return a zero-length StringRef with a valid 
Begin pointer in this case. I think the reason is something to do with code 
completion. I can check later.


================
Comment at: clang-query/QueryParser.cpp:37
+    Line = {};
     return StringRef();
   }
----------------
aaron.ballman wrote:
> Why not just return `Line` here as well?
That's pre-existing. Seems more clear to leave it as is.


Repository:
  rCTE Clang Tools Extra

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

https://reviews.llvm.org/D56415



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

Reply via email to