Closed rkonklex closed 5 years ago
C++ does not allow to implicitly cast away the const modifier, which resulted in a warning for term and delim parameters. This patch changes the types of these parameters and fields to const char *, since they are not intended to be mutable.
Thanks nythil.
C++ does not allow to implicitly cast away the const modifier, which resulted in a warning for term and delim parameters. This patch changes the types of these parameters and fields to const char *, since they are not intended to be mutable.