@@ -1 +1 @@
-g++ -o pocketpy src/main.cpp --std=c++17 -O1 -pthread -Wno-literal-suffix
+g++ -o pocketpy src/main.cpp --std=c++17 -O1 -pthread
@@ -150,14 +150,6 @@ public:
return *_s != *other._s;
}
- bool operator==(const char* other) const {
- return *_s == other;
- }
-
- bool operator!=(const char* other) const {
- return *_s != other;
bool operator<(const _Str& other) const {
return *_s < *other._s;