Added atomicFetchAndAddsat/Subsat.

This commit is contained in:
Branimir Karadžić
2017-10-23 08:27:03 -07:00
parent 0a2c440a77
commit b6a01bf42c
6 changed files with 104 additions and 6 deletions

View File

@@ -165,12 +165,6 @@ namespace bx
return _ch;
}
template<typename Ty>
inline Ty min(Ty _a, Ty _b)
{
return _a > _b ? _b : _a;
}
template<CharFn fn>
inline int32_t strCmp(const char* _lhs, int32_t _lhsMax, const char* _rhs, int32_t _rhsMax)
{