We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00d319a commit 755abdeCopy full SHA for 755abde
PythonObfuscator/Utils.h
@@ -8,7 +8,6 @@ class Utils {
8
}
9
10
inline void replace_all(std::string& data, std::string to_search, std::string replace_str) {
11
-
12
size_t pos = data.find(to_search);
13
14
while (pos != std::string::npos) {
@@ -18,7 +17,6 @@ class Utils {
18
17
19
20
inline std::string rot13(std::string input) {
21
22
for (std::string::size_type len = input.length(), idx = 0; idx != len; ++idx) {
23
if (input[idx] >= 'a' && input[idx] <= 'm')
24
input[idx] = input[idx] + 13;
0 commit comments