[sam] Removed warning for aggregate values in function call

This commit is contained in:
Cristian Maglie 2012-05-02 19:51:45 +02:00
parent fe63430cb7
commit 3979a4b1c9
2 changed files with 1 additions and 6 deletions

View File

@ -528,11 +528,6 @@ int String::lastIndexOf(const String &s2, unsigned int fromIndex) const
return found; return found;
} }
String String::substring( unsigned int left ) const
{
return substring(left, len);
}
String String::substring(unsigned int left, unsigned int right) const String String::substring(unsigned int left, unsigned int right) const
{ {
if (left > right) { if (left > right) {

View File

@ -156,7 +156,7 @@ public:
int lastIndexOf( char ch, unsigned int fromIndex ) const; int lastIndexOf( char ch, unsigned int fromIndex ) const;
int lastIndexOf( const String &str ) const; int lastIndexOf( const String &str ) const;
int lastIndexOf( const String &str, unsigned int fromIndex ) const; int lastIndexOf( const String &str, unsigned int fromIndex ) const;
String substring( unsigned int beginIndex ) const; String substring( unsigned int beginIndex ) const { return substring(beginIndex, len); };
String substring( unsigned int beginIndex, unsigned int endIndex ) const; String substring( unsigned int beginIndex, unsigned int endIndex ) const;
// modification // modification