$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] exception mechanism of boost.regex conflicts with QT lib.
From: cat fa (boost.subscribing_at_[hidden])
Date: 2011-11-23 11:22:59
a short piece of code:
/////////////////////////////////////
boost::regex reg;; try { reg.assign( "[]d"); } catch(std::runtime_error &e) {
//exception }
//////////////////////////
this code runs well in Eclipse with MingW. When I copy this code in my QT
project and run, it seems that QT lib cannot handle the exception which
boost.regex lib throws. A run time termination warning shows as a result.
I'm using win7 64bit. My QT is integrated with MingW 4.4 .
Did any one encounter a similar problem? Could someone help me ?