Skip to content

Commit 755abde

Browse files
authored
CodeFactor Suggestion
1 parent 00d319a commit 755abde

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

PythonObfuscator/Utils.h

-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ class Utils {
88
}
99

1010
inline void replace_all(std::string& data, std::string to_search, std::string replace_str) {
11-
1211
size_t pos = data.find(to_search);
1312

1413
while (pos != std::string::npos) {
@@ -18,7 +17,6 @@ class Utils {
1817
}
1918

2019
inline std::string rot13(std::string input) {
21-
2220
for (std::string::size_type len = input.length(), idx = 0; idx != len; ++idx) {
2321
if (input[idx] >= 'a' && input[idx] <= 'm')
2422
input[idx] = input[idx] + 13;

0 commit comments

Comments
 (0)