diff options
Diffstat (limited to 'util.cpp')
-rw-r--r-- | util.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -250,11 +250,6 @@ string strprintf(const char* format, ...) if (p == NULL)
throw std::bad_alloc();
}
-#ifdef _MSC_VER
- // msvc optimisation
- if (p == buffer)
- return string(p, p+ret);
-#endif
string str(p, p+ret);
if (p != buffer)
delete p;
|