diff options
Diffstat (limited to '')
-rw-r--r-- | tools/clang-tidy/test/performance-faster-string-find.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/clang-tidy/test/performance-faster-string-find.cpp b/tools/clang-tidy/test/performance-faster-string-find.cpp new file mode 100644 index 0000000000..d7ac3d0c3c --- /dev/null +++ b/tools/clang-tidy/test/performance-faster-string-find.cpp @@ -0,0 +1,6 @@ +#include "structures.h" + +void foo() { + std::string str; + str.find("A"); +} |