fune/tools/clang-tidy/test/performance-faster-string-find.cpp
Jan Keromnes a4701a58b0 Bug 1468811 - Re-enable clang-tidy check performance-faster-string-find. r=sylvestre
It already had test files, but wasn't actually enabled. Also add a mock internal
std::string::find signature; two comments about disabled checks; and fix a typo.
2018-06-19 08:08:00 +03:00

6 lines
No EOL
75 B
C++

#include "structures.h"
void foo() {
std::string str;
str.find("A");
}