mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-05 03:53:48 +00:00
chore(Deps/Acelite): Update to 6.5.10 (#3450)
This commit is contained in:
10
deps/acelite/ace/SString.h
vendored
10
deps/acelite/ace/SString.h
vendored
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user