1
General / Re: sf::String to std::string assert error
« on: July 12, 2014, 12:18:54 am »
After replacing SFML-2.1's binaries with the VS2013 RC ones, the error no longer occurs. Hence my bad - I was using the wrong binaries.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Debug Assertion Failed!
Program: ...ML_StringAssert_TestCase\Debug\SFML_StringAssert_TestCase.exe
File: f:\dd\vctools\crt_bld\self_x86\crt\src\dbgheap.c
Line: 1424
Expression: _pFirstBlock == pHead
For information on how your program can cause an assertion
failure, see the Visual C++ documentation on asserts.
(Press Retry to debug the application)
#include <SFML\Graphics.hpp>
int main()
{
sf::String test = "test";
std::string convert = test;
return 0;
}