Bug 53057: Removing implicit |CharT*| conversion operator for nsCString, r=dbaron, rs=scc

git-svn-id: svn://10.0.0.236/trunk@107850 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jaggernaut%netscape.com
2001-11-10 22:00:31 +00:00
parent 38d0af9333
commit 85bf8c8fb4
2 changed files with 0 additions and 10 deletions

View File

@@ -242,9 +242,6 @@ public:
/**********************************************************************
string conversion methods...
*********************************************************************/
//#ifndef STANDALONE_STRING_TESTS
operator const char*() const {return (const char*)mStr;}
//#endif
/**
* Perform string to float conversion.
@@ -513,7 +510,6 @@ class NS_COM NS_ConvertUCS2toUTF8
private:
// NOT TO BE IMPLEMENTED
NS_ConvertUCS2toUTF8( char );
operator const char*() const; // use |get()|
};
/**
@@ -542,7 +538,6 @@ class NS_COM NS_LossyConvertUCS2toASCII
private:
// NOT TO BE IMPLEMENTED
NS_LossyConvertUCS2toASCII( char );
operator const char*() const; // use |get()|
};
#endif