mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 10:48:36 +12:00
remove unexplained commented out code that I added myself with the last PR
* remove unexplained commented out code that I added myself * revert asmjit settings change that was meant to only be local for me
This commit is contained in:
parent
bd6837f2f9
commit
e85abdeb2c
16 changed files with 5 additions and 215 deletions
|
@ -9,29 +9,6 @@
|
|||
#define snprintf _snprintf
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
//int CmpNoCase(const std::string &str, const std::string &str2)
|
||||
//{
|
||||
// bool same;
|
||||
// if (str.size() > str2.size())
|
||||
// {
|
||||
// same = std::equal(str.cbegin(), str.cend(), str2.cbegin(), [](const char a, const char b) -> bool{ return tolower(a) == tolower(b); });
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// same = std::equal(str2.cbegin(), str2.cend(), str.cbegin(), [](const char a, const char b) -> bool{ return tolower(a) == tolower(b); });
|
||||
// }
|
||||
// if (same)
|
||||
// {
|
||||
// return 0;
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// return 1;
|
||||
// }
|
||||
//}
|
||||
|
||||
namespace fmt{
|
||||
using std::string;
|
||||
using std::ostream;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue