chore(Deps/Acelite): Update to 6.5.10 (#3450)

This commit is contained in:
Kargatum
2020-11-11 22:09:02 +07:00
committed by GitHub
parent a93565b6da
commit e27201cee2
921 changed files with 18238 additions and 33164 deletions

View File

@@ -4,7 +4,7 @@
/**
* @file SString.h
*
* @author Douglas C. Schmidt (schmidt@cs.wustl.edu)
* @author Douglas C. Schmidt (d.schmidt@vanderbilt.edu)
*/
//=============================================================================
@@ -56,7 +56,6 @@ template class ACE_Export ACE_String_Base_Const_Iterator<ACE_WSTRING_TYPE>;
class ACE_Export ACE_NS_WString : public ACE_WString
{
public:
using ACE_WString::size_type;
/// Default constructor.
@@ -131,7 +130,6 @@ ACE_NS_WString operator + (const ACE_NS_WString &,
class ACE_Export ACE_SString
{
public:
typedef ACE_Allocator::size_type size_type;
/// No position constant
@@ -156,11 +154,11 @@ public:
/// Default destructor.
~ACE_SString (void);
/// Return the <slot'th> character in the string (doesn't perform
/// Return the slot'th character in the string (doesn't perform
/// bounds checking).
char operator [] (size_type slot) const;
/// Return the <slot'th> character by reference in the string
/// Return the slot'th character by reference in the string
/// (doesn't perform bounds checking).
char &operator [] (size_type slot);
@@ -204,7 +202,7 @@ public:
/// location that matches (will be >= pos), else npos.
size_type find (const ACE_SString &str, size_type pos = 0) const;
/// Find <s> starting at pos. Returns the slot of the first
/// Find @a s starting at pos. Returns the slot of the first
/// location that matches (will be >= pos), else npos.
size_type find (const char *s, size_type pos = 0) const;