Hello, I get some warnings if I step into the default sf::Image constructor when debugging with gdb. (only in Mac OS X Snow Leopard)
Here's the minimal code, using the SFML 1.5 libraries:
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow App(sf::VideoMode(640, 480, 32), "SFML Graphics");
sf::Image image; // this line of code produces warnings
while (App.IsOpened())
{
sf::Event Event;
while (App.GetEvent(Event))
{
if (Event.Type == sf::Event::Closed)
App.Close();
}
App.Clear();
App.Display();
}
return EXIT_SUCCESS;
}
And this is one of a lot of very similar warnings when debugging: (all warnings would fill the entire page probably)
warning: Could not find object file "/Users/lucas/release-sfml-1.5/SFML-1.5-sdk-macosx/build/xcode/build/SFML.build/Release/sfml-graphics.build/Objects-normal/i386/Color.o" - no debug information available for "/Users/lucas/release-sfml-1.5/SFML-1.5-sdk-macosx/build/xcode/../../src/SFML/Graphics/Color.cpp".
Note that I don't even have a user named lucas on my system... so what do you think?