1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Remove obsolete typedef.

This commit is contained in:
Sandu Liviu Catalin 2021-02-03 17:51:20 +02:00
parent 0de21ae5a0
commit ec02e72cc3
2 changed files with 34 additions and 34 deletions

View File

@ -440,7 +440,7 @@ SQInteger SockAddr::Typename(HSQUIRRELVM vm)
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void SockAddr::Validate(CCStr file, int32_t line) const void SockAddr::Validate(const SQChar * file, int32_t line) const
{ {
if (!m_Handle) if (!m_Handle)
{ {
@ -459,7 +459,7 @@ void SockAddr::Validate() const
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
SockAddr::Pointer SockAddr::GetValid(CCStr file, int32_t line) const SockAddr::Pointer SockAddr::GetValid(const SQChar * file, int32_t line) const
{ {
Validate(file, line); Validate(file, line);
return m_Handle; return m_Handle;
@ -547,7 +547,7 @@ SQInteger Database::Typename(HSQUIRRELVM vm)
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void Database::Validate(CCStr file, int32_t line) const void Database::Validate(const SQChar * file, int32_t line) const
{ {
if (!m_Handle) if (!m_Handle)
{ {
@ -566,7 +566,7 @@ void Database::Validate() const
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
const DbRef & Database::GetValid(CCStr file, int32_t line) const const DbRef & Database::GetValid(const SQChar * file, int32_t line) const
{ {
Validate(file, line); Validate(file, line);
return m_Handle; return m_Handle;
@ -683,7 +683,7 @@ SQInteger Description::Typename(HSQUIRRELVM vm)
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void Description::Validate(CCStr file, int32_t line) const void Description::Validate(const SQChar * file, int32_t line) const
{ {
if (!m_Handle) if (!m_Handle)
{ {
@ -702,7 +702,7 @@ void Description::Validate() const
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
Description::Pointer Description::GetValid(CCStr file, int32_t line) const Description::Pointer Description::GetValid(const SQChar * file, int32_t line) const
{ {
Validate(file, line); Validate(file, line);
// Validate the referenced description // Validate the referenced description
@ -743,7 +743,7 @@ SQInteger EntryData::Typename(HSQUIRRELVM vm)
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void EntryData::Validate(CCStr file, int32_t line) const void EntryData::Validate(const SQChar * file, int32_t line) const
{ {
if (!m_Handle) if (!m_Handle)
{ {
@ -762,7 +762,7 @@ void EntryData::Validate() const
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
EntryData::ConstRef EntryData::GetValid(CCStr file, int32_t line) const EntryData::ConstRef EntryData::GetValid(const SQChar * file, int32_t line) const
{ {
Validate(file, line); Validate(file, line);
// See if the entry has any data // See if the entry has any data
@ -817,7 +817,7 @@ SQInteger EntryDataList::Typename(HSQUIRRELVM vm)
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void EntryDataList::Validate(CCStr file, int32_t line) const void EntryDataList::Validate(const SQChar * file, int32_t line) const
{ {
if (!m_Handle) if (!m_Handle)
{ {
@ -836,7 +836,7 @@ void EntryDataList::Validate() const
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
EntryDataList::Pointer EntryDataList::GetValid(CCStr file, int32_t line) const EntryDataList::Pointer EntryDataList::GetValid(const SQChar * file, int32_t line) const
{ {
Validate(file, line); Validate(file, line);
// Validate the managed list // Validate the managed list
@ -863,7 +863,7 @@ EntryDataList::Pointer EntryDataList::GetValid() const
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
EntryDataList::Pointer EntryDataList::GetValidElem(CCStr file, int32_t line) const EntryDataList::Pointer EntryDataList::GetValidElem(const SQChar * file, int32_t line) const
{ {
Validate(file, line); Validate(file, line);
// Validate the current element // Validate the current element
@ -975,7 +975,7 @@ SQInteger LookupResult::Typename(HSQUIRRELVM vm)
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void LookupResult::Validate(CCStr file, int32_t line) const void LookupResult::Validate(const SQChar * file, int32_t line) const
{ {
if (!m_Handle) if (!m_Handle)
{ {
@ -994,7 +994,7 @@ void LookupResult::Validate() const
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
const DbRef & LookupResult::GetValid(CCStr file, int32_t line) const const DbRef & LookupResult::GetValid(const SQChar * file, int32_t line) const
{ {
Validate(file, line); Validate(file, line);
return m_Handle; return m_Handle;
@ -1135,7 +1135,7 @@ SQInteger Metadata::Typename(HSQUIRRELVM vm)
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void Metadata::Validate(CCStr file, int32_t line) const void Metadata::Validate(const SQChar * file, int32_t line) const
{ {
if (!m_Handle) if (!m_Handle)
{ {
@ -1154,7 +1154,7 @@ void Metadata::Validate() const
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
Metadata::Pointer Metadata::GetValid(CCStr file, int32_t line) const Metadata::Pointer Metadata::GetValid(const SQChar * file, int32_t line) const
{ {
Validate(file, line); Validate(file, line);
// Validate the referenced meta-data // Validate the referenced meta-data
@ -1207,7 +1207,7 @@ SQInteger SearchNode::Typename(HSQUIRRELVM vm)
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void SearchNode::Validate(CCStr file, int32_t line) const void SearchNode::Validate(const SQChar * file, int32_t line) const
{ {
if (!m_Handle) if (!m_Handle)
{ {
@ -1226,7 +1226,7 @@ void SearchNode::Validate() const
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
SearchNode::Reference SearchNode::GetValid(CCStr file, int32_t line) SearchNode::Reference SearchNode::GetValid(const SQChar * file, int32_t line)
{ {
Validate(file, line); Validate(file, line);
return m_Node; return m_Node;

View File

@ -112,7 +112,7 @@ protected:
* Validate the managed sockaddr pointer and throw an error if invalid. * Validate the managed sockaddr pointer and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void Validate(CCStr file, int32_t line) const; void Validate(const SQChar * file, int32_t line) const;
#else #else
void Validate() const; void Validate() const;
#endif // _DEBUG #endif // _DEBUG
@ -121,7 +121,7 @@ protected:
* Validate the managed sockaddr pointer and throw an error if invalid. * Validate the managed sockaddr pointer and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
SQMOD_NODISCARD Pointer GetValid(CCStr file, int32_t line) const; SQMOD_NODISCARD Pointer GetValid(const SQChar * file, int32_t line) const;
#else #else
SQMOD_NODISCARD Pointer GetValid() const; SQMOD_NODISCARD Pointer GetValid() const;
#endif // _DEBUG #endif // _DEBUG
@ -314,7 +314,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void Validate(CCStr file, int32_t line) const; void Validate(const SQChar * file, int32_t line) const;
#else #else
void Validate() const; void Validate() const;
#endif // #endif //
@ -323,7 +323,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
SQMOD_NODISCARD const DbRef & GetValid(CCStr file, int32_t line) const; SQMOD_NODISCARD const DbRef & GetValid(const SQChar * file, int32_t line) const;
#else #else
SQMOD_NODISCARD const DbRef & GetValid() const; SQMOD_NODISCARD const DbRef & GetValid() const;
#endif // _DEBUG #endif // _DEBUG
@ -502,7 +502,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void Validate(CCStr file, int32_t line) const; void Validate(const SQChar * file, int32_t line) const;
#else #else
void Validate() const; void Validate() const;
#endif // _DEBUG #endif // _DEBUG
@ -511,7 +511,7 @@ protected:
* Validate the managed database handle and description pointer and throw an error if invalid. * Validate the managed database handle and description pointer and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
SQMOD_NODISCARD Pointer GetValid(CCStr file, int32_t line) const; SQMOD_NODISCARD Pointer GetValid(const SQChar * file, int32_t line) const;
#else #else
SQMOD_NODISCARD Pointer GetValid() const; SQMOD_NODISCARD Pointer GetValid() const;
#endif // _DEBUG #endif // _DEBUG
@ -646,7 +646,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void Validate(CCStr file, int32_t line) const; void Validate(const SQChar * file, int32_t line) const;
#else #else
void Validate() const; void Validate() const;
#endif // _DEBUG #endif // _DEBUG
@ -655,7 +655,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
SQMOD_NODISCARD ConstRef GetValid(CCStr file, int32_t line) const; SQMOD_NODISCARD ConstRef GetValid(const SQChar * file, int32_t line) const;
#else #else
SQMOD_NODISCARD ConstRef GetValid() const; SQMOD_NODISCARD ConstRef GetValid() const;
#endif // _DEBUG #endif // _DEBUG
@ -857,7 +857,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void Validate(CCStr file, int32_t line) const; void Validate(const SQChar * file, int32_t line) const;
#else #else
void Validate() const; void Validate() const;
#endif // _DEBUG #endif // _DEBUG
@ -866,7 +866,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
SQMOD_NODISCARD Pointer GetValid(CCStr file, int32_t line) const; SQMOD_NODISCARD Pointer GetValid(const SQChar * file, int32_t line) const;
#else #else
SQMOD_NODISCARD Pointer GetValid() const; SQMOD_NODISCARD Pointer GetValid() const;
#endif // _DEBUG #endif // _DEBUG
@ -875,7 +875,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
SQMOD_NODISCARD Pointer GetValidElem(CCStr file, int32_t line) const; SQMOD_NODISCARD Pointer GetValidElem(const SQChar * file, int32_t line) const;
#else #else
SQMOD_NODISCARD Pointer GetValidElem() const; SQMOD_NODISCARD Pointer GetValidElem() const;
#endif // _DEBUG #endif // _DEBUG
@ -1164,7 +1164,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void Validate(CCStr file, int32_t line) const; void Validate(const SQChar * file, int32_t line) const;
#else #else
void Validate() const; void Validate() const;
#endif // _DEBUG #endif // _DEBUG
@ -1173,7 +1173,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
SQMOD_NODISCARD const DbRef & GetValid(CCStr file, int32_t line) const; SQMOD_NODISCARD const DbRef & GetValid(const SQChar * file, int32_t line) const;
#else #else
SQMOD_NODISCARD const DbRef & GetValid() const; SQMOD_NODISCARD const DbRef & GetValid() const;
#endif // _DEBUG #endif // _DEBUG
@ -1316,7 +1316,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void Validate(CCStr file, int32_t line) const; void Validate(const SQChar * file, int32_t line) const;
#else #else
void Validate() const; void Validate() const;
#endif // _DEBUG #endif // _DEBUG
@ -1325,7 +1325,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
SQMOD_NODISCARD Pointer GetValid(CCStr file, int32_t line) const; SQMOD_NODISCARD Pointer GetValid(const SQChar * file, int32_t line) const;
#else #else
SQMOD_NODISCARD Pointer GetValid() const; SQMOD_NODISCARD Pointer GetValid() const;
#endif // _DEBUG #endif // _DEBUG
@ -1563,7 +1563,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
void Validate(CCStr file, int32_t line) const; void Validate(const SQChar * file, int32_t line) const;
#else #else
void Validate() const; void Validate() const;
#endif // _DEBUG #endif // _DEBUG
@ -1572,7 +1572,7 @@ protected:
* Validate the managed database handle and throw an error if invalid. * Validate the managed database handle and throw an error if invalid.
*/ */
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC) #if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
SQMOD_NODISCARD Reference GetValid(CCStr file, int32_t line); SQMOD_NODISCARD Reference GetValid(const SQChar * file, int32_t line);
#else #else
SQMOD_NODISCARD Reference GetValid(); SQMOD_NODISCARD Reference GetValid();
#endif // _DEBUG #endif // _DEBUG