Cleanup blank lines

This commit is contained in:
Tom Lally 2022-08-28 11:54:59 +01:00
parent 056ae1f882
commit 43d8ee78c2
2 changed files with 0 additions and 4 deletions

View file

@ -177,8 +177,6 @@ inline sint16 _swapEndianS16(sint16 v)
return (sint16)(((uint16)v >> 8) | ((uint16)v << 8)); return (sint16)(((uint16)v >> 8) | ((uint16)v << 8));
} }
inline uint64 _umul128(uint64 multiplier, uint64 multiplicand, uint64 *highProduct) { inline uint64 _umul128(uint64 multiplier, uint64 multiplicand, uint64 *highProduct) {
unsigned __int128 x = (unsigned __int128)multiplier * (unsigned __int128)multiplicand; unsigned __int128 x = (unsigned __int128)multiplier * (unsigned __int128)multiplicand;
*highProduct = (x >> 64); *highProduct = (x >> 64);

View file

@ -199,8 +199,6 @@ bool MemorySearcherTool::ConvertStringToType(const char* inValue, sint8& outValu
// //
//template <typename T> //template <typename T>
//void MemorySearcherTool::FilterValues() //void MemorySearcherTool::FilterValues()