Skip to content

Commit a5ece04

Browse files
committed
Remove unneeded qualifier
1 parent 3910073 commit a5ece04

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/common/cvt.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3726,9 +3726,9 @@ namespace
37263726
public:
37273727
virtual bool transliterate(const dsc* from, dsc* to, CSetId&);
37283728
virtual CSetId getChid(const dsc* d);
3729-
virtual Firebird::CharSet* getToCharset(CSetId charset2);
3730-
virtual void validateData(Firebird::CharSet* toCharset, SLONG length, const UCHAR* q);
3731-
virtual ULONG validateLength(Firebird::CharSet* charSet, CSetId charSetId, ULONG length, const UCHAR* start,
3729+
virtual CharSet* getToCharset(CSetId charset2);
3730+
virtual void validateData(CharSet* toCharset, SLONG length, const UCHAR* q);
3731+
virtual ULONG validateLength(CharSet* charSet, CSetId charSetId, ULONG length, const UCHAR* start,
37323732
const USHORT size);
37333733
virtual SLONG getLocalDate();
37343734
virtual ISC_TIMESTAMP getCurrentGmtTimeStamp();
@@ -3742,7 +3742,7 @@ namespace
37423742
return false;
37433743
}
37443744

3745-
Firebird::CharSet* CommonCallbacks::getToCharset(CSetId)
3745+
CharSet* CommonCallbacks::getToCharset(CSetId)
37463746
{
37473747
return NULL;
37483748
}
@@ -3751,7 +3751,7 @@ namespace
37513751
{
37523752
}
37533753

3754-
ULONG CommonCallbacks::validateLength(Firebird::CharSet* charSet, CSetId charSetId, ULONG length, const UCHAR* start,
3754+
ULONG CommonCallbacks::validateLength(CharSet* charSet, CSetId charSetId, ULONG length, const UCHAR* start,
37553755
const USHORT size)
37563756
{
37573757
if (length > size)

0 commit comments

Comments
 (0)