Hi!

I encountered a problem using gtkmm with boost 1.35/1.38 libraries on 
Win32/MSVC 2008.

Simple code provided below works fine until I add gtkmm_2_4_vc90_d property set 
as described here : 
http://www.gtkmm.org/docs/gtkmm-2.4/docs/tutorial/html/sec-visual-studio-new-project.html.

Code:

#include "stdafx.h"

int main(int argc, char* argv[])
{
        float v = 2.2;
        boost::format fmt("%.2f");
        fmt % v;   // <- AV here
        return 0;
}

After adding gtkmm property set access violation occurs during the execution of 
the program(in Debug 
configuration). It is certainly not a boost libraries problem. 

Any suggestions?

Thank you.






_______________________________________________
gtkmm-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/gtkmm-list

Reply via email to