Click here to Skip to main content
15,894,539 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Implication of assign a value at function entry Pin
ForNow6-Mar-18 9:39
ForNow6-Mar-18 9:39 
QuestionRe: Implication of assign a value at function entry Pin
jeron16-Mar-18 9:50
jeron16-Mar-18 9:50 
AnswerRe: Implication of assign a value at function entry Pin
ForNow6-Mar-18 10:10
ForNow6-Mar-18 10:10 
GeneralRe: Implication of assign a value at function entry Pin
jeron16-Mar-18 10:35
jeron16-Mar-18 10:35 
GeneralRe: Implication of assign a value at function entry Pin
Richard MacCutchan6-Mar-18 10:47
mveRichard MacCutchan6-Mar-18 10:47 
GeneralRe: Implication of assign a value at function entry Pin
ForNow6-Mar-18 11:07
ForNow6-Mar-18 11:07 
GeneralRe: Implication of assign a value at function entry Pin
ForNow7-Mar-18 4:57
ForNow7-Mar-18 4:57 
GeneralRe: Implication of assign a value at function entry Pin
Richard MacCutchan7-Mar-18 5:02
mveRichard MacCutchan7-Mar-18 5:02 
AnswerRe: Implication of assign a value at function entry Pin
charlieg6-Mar-18 13:38
charlieg6-Mar-18 13:38 
PraiseRe: Implication of assign a value at function entry Pin
CPallini6-Mar-18 21:39
mveCPallini6-Mar-18 21:39 
Questionproblem with dynamic constructors, (cannot convert string literal to (char *) ). Pin
Tarun Jha6-Mar-18 2:31
Tarun Jha6-Mar-18 2:31 
AnswerRe: problem with dynamic constructors, (cannot convert string literal to (char *) ). Pin
Richard MacCutchan6-Mar-18 2:49
mveRichard MacCutchan6-Mar-18 2:49 
GeneralRe: problem with dynamic constructors, (cannot convert string literal to (char *) ). Pin
Tarun Jha6-Mar-18 3:38
Tarun Jha6-Mar-18 3:38 
AnswerRe: problem with dynamic constructors, (cannot convert string literal to (char *) ). Pin
Jochen Arndt6-Mar-18 2:58
professionalJochen Arndt6-Mar-18 2:58 
GeneralRe: problem with dynamic constructors, (cannot convert string literal to (char *) ). Pin
Tarun Jha6-Mar-18 3:34
Tarun Jha6-Mar-18 3:34 
GeneralRe: problem with dynamic constructors, (cannot convert string literal to (char *) ). Pin
Tarun Jha6-Mar-18 3:43
Tarun Jha6-Mar-18 3:43 
GeneralRe: problem with dynamic constructors, (cannot convert string literal to (char *) ). Pin
Jochen Arndt6-Mar-18 3:56
professionalJochen Arndt6-Mar-18 3:56 
GeneralRe: problem with dynamic constructors, (cannot convert string literal to (char *) ). Pin
Tarun Jha7-Mar-18 3:05
Tarun Jha7-Mar-18 3:05 
AnswerRe: problem with dynamic constructors, (cannot convert string literal to (char *) ). Pin
CPallini6-Mar-18 3:29
mveCPallini6-Mar-18 3:29 
AnswerRe: problem with dynamic constructors, (cannot convert string literal to (char *) ). Pin
Joe Woodbury6-Mar-18 6:14
professionalJoe Woodbury6-Mar-18 6:14 
Questiondebugging a Boost serialization assertion Pin
Alexander Kindel5-Mar-18 21:56
Alexander Kindel5-Mar-18 21:56 
AnswerRe: debugging a Boost serialization assertion Pin
Jochen Arndt5-Mar-18 22:32
professionalJochen Arndt5-Mar-18 22:32 
Start by having a look at the full code containing the assert statement:
C++
BOOST_ARCHIVE_DECL(const basic_serializer *)
basic_serializer_map::find(
    const boost::serialization::extended_type_info & eti
) const {
    const basic_serializer_arg bs(eti);
    map_type::const_iterator it;
    it = m_map.find(& bs);
    if(it == m_map.end()){
        BOOST_ASSERT(false);
        return 0;
    }
    return *it;
}
The assertion is thrown when the specified element can't be found in the container (see map::find - C++ Reference[^] ). Locate where the find function is called in your code and check the passed argument.
GeneralRe: debugging a Boost serialization assertion Pin
Alexander Kindel5-Mar-18 23:48
Alexander Kindel5-Mar-18 23:48 
QuestionDouble Click on ProgressBar Pin
Fedrer5-Mar-18 20:09
Fedrer5-Mar-18 20:09 
QuestionRe: Double Click on ProgressBar Pin
Maciej Los5-Mar-18 20:24
mveMaciej Los5-Mar-18 20:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.