Bug 1879449 [wpt PR 44489] - [wptrunner] Add `infrastructure/expected-fail/` test...
[gecko.git] / tools / clang-tidy / test / readability-redundant-string-cstr.cpp
blobd35a2998e5b50afb70af4b708d8e0bf951cdfcd8
1 #include "structures.h"
3 void foo() {
4 std::string a = "Mozilla";
5 std::string tmp;
6 tmp.assign(a.c_str());