MString fixes.
This commit is contained in:
parent
963a0561e8
commit
d38b7f0c55
@ -59,11 +59,6 @@ namespace coreutils {
|
||||
free(data);
|
||||
}
|
||||
|
||||
int overflow(int c) {
|
||||
std::cout << '{' << c << "}";
|
||||
return 0;
|
||||
}
|
||||
|
||||
// MString& MString::operator=(coreutils::ZString& value) {
|
||||
// if(*this == value)
|
||||
// return *this;
|
||||
|
10
MString.h
10
MString.h
@ -90,15 +90,15 @@ namespace coreutils {
|
||||
///
|
||||
///
|
||||
|
||||
MString& operator<<(const char *value);
|
||||
MString& operator<<(const char *value);
|
||||
|
||||
MString& operator<<(const int value);
|
||||
MString& operator<<(const int value);
|
||||
|
||||
// MString& operator<<(coreutils::ZString &zstring);
|
||||
// MString& operator<<(coreutils::ZString &zstring);
|
||||
|
||||
MString& operator<<(coreutils::ZString zstring);
|
||||
MString& operator<<(coreutils::ZString zstring);
|
||||
|
||||
MString& operator<<(std::string value);
|
||||
MString& operator<<(std::string value);
|
||||
|
||||
///
|
||||
///
|
||||
|
Loading…
x
Reference in New Issue
Block a user