Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cpp-client): use std::getline for reading passwords (#6542)
Previously we were using `std::cin >> s` which has enough unintuitive behaviors (skipping leading whitespace, stopping at first nonleading whitespace) that we decided it was better to use `std::getline`
- Loading branch information