================ @@ -0,0 +1,40 @@ +#include <stdio.h> +#include <string> +#include <vector> +typedef std::vector<int> int_vect; +typedef std::vector<std::string> string_vect; + +template <class T> +void by_ref_and_ptr(std::vector<T> &ref, std::vector<T> *ptr) { + // Stop here to check by ref + return; +} + +int main() { + int_vect numbers; + (numbers.push_back(1)); // break here ---------------- labath wrote:
I'm not sure what are the parens for, but I wouldn't want my name to go down in history with them :P https://github.com/llvm/llvm-project/pull/146885 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits