Skip to content

Commit e64ae3e

Browse files
committed
Fix Linux build
1 parent d6a6c30 commit e64ae3e

2 files changed

Lines changed: 0 additions & 12 deletions

File tree

src/public/tier1/strtools.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -890,16 +890,10 @@ bool V_BBCodeToHTML( OUT_Z_CAP( nDestSize ) char *pDest, const int nDestSize, ch
890890

891891
// helper to identify "mean" spaces, which we don't like in visible identifiers
892892
// such as player Name
893-
#ifdef NEO
894-
constexpr
895-
#endif
896893
bool V_IsMeanSpaceW( wchar_t wch );
897894

898895
// helper to identify characters which are deprecated in Unicode,
899896
// and we simply don't accept
900-
#ifdef NEO
901-
constexpr
902-
#endif
903897
bool V_IsDeprecatedW( wchar_t wch );
904898

905899
//-----------------------------------------------------------------------------

src/tier1/strtools.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3942,9 +3942,6 @@ bool V_IsMeanUnderscoreW( wchar_t wch )
39423942
// characters in this set are removed from the beginning and/or end of strings
39433943
// by Q_AggressiveStripPrecedingAndTrailingWhitespaceW()
39443944
//-----------------------------------------------------------------------------
3945-
#ifdef NEO
3946-
constexpr
3947-
#endif
39483945
bool V_IsMeanSpaceW( wchar_t wch )
39493946
{
39503947
bool bIsMean = false;
@@ -4032,9 +4029,6 @@ bool V_IsMeanSpaceW( wchar_t wch )
40324029
// Ideally, we'd perfectly support these end-to-end but we never realistically will.
40334030
// The benefit of doing so far outweighs the cost, anyway.
40344031
//-----------------------------------------------------------------------------
4035-
#ifdef NEO
4036-
constexpr
4037-
#endif
40384032
bool V_IsDeprecatedW( wchar_t wch )
40394033
{
40404034
bool bIsDeprecated = false;

0 commit comments

Comments
 (0)