summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorakhropov <[email protected]>2025-11-06 23:20:14 +0300
committerakhropov <[email protected]>2025-11-06 23:35:18 +0300
commit63d9cfd5a6d89fc6fb70532aeb7582cc3727d5f8 (patch)
tree1ab548c8eeacccc14c97d24144061e5186995e16 /util
parent725e556a819950af6249a32560d80a1b90952a4f (diff)
STLPort is no longer supported.
commit_hash:86a5d56bc280e1c3a543e9649e6fec01e0e6d4b1
Diffstat (limited to 'util')
-rw-r--r--util/generic/string_ut.cpp2
-rw-r--r--util/generic/ymath.h2
2 files changed, 0 insertions, 4 deletions
diff --git a/util/generic/string_ut.cpp b/util/generic/string_ut.cpp
index 01c7a011881..72e1d0dd847 100644
--- a/util/generic/string_ut.cpp
+++ b/util/generic/string_ut.cpp
@@ -687,12 +687,10 @@ protected:
str.replace(5, 5, str.c_str(), 10);
UNIT_ASSERT(str == Data.This_This_is_test_StringT_for_StringT_calls());
- #if !defined(STLPORT) || defined(_STLP_MEMBER_TEMPLATES)
deque<TChar> cdeque;
cdeque.push_back(*Data.I());
str.replace(str.begin(), str.begin() + 11, cdeque.begin(), cdeque.end());
UNIT_ASSERT(str == Data.Is_test_StringT_for_StringT_calls());
- #endif
}
#endif
}; // TStringStdTestImpl
diff --git a/util/generic/ymath.h b/util/generic/ymath.h
index 163e581b7a0..325fb9c4524 100644
--- a/util/generic/ymath.h
+++ b/util/generic/ymath.h
@@ -73,8 +73,6 @@ static inline bool IsFinite(double f) {
return isfinite(f);
#elif defined(__GNUC__)
return __builtin_isfinite(f);
-#elif defined(_STLP_VENDOR_STD)
- return _STLP_VENDOR_STD::isfinite(f);
#else
return std::isfinite(f);
#endif