Incompatibility of gtkmm 2.14 with boost 1.35/38 on Win32/MSVC 2008



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.








[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]