diff options
Diffstat (limited to 'include/SString.h')
| -rw-r--r-- | include/SString.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/include/SString.h b/include/SString.h index 64f702b66..6ae65806a 100644 --- a/include/SString.h +++ b/include/SString.h @@ -299,6 +299,9 @@ public:  			posFound = search(sFind, posFound + lenReplace);  		}  	} +	void remove(const char *sFind) { +		substitute(sFind, ""); +	}  };  #endif | 
