Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => Topic started by: LETARTARE on December 01, 2021, 04:44:47 pm

Title: svn-12539
Post by: LETARTARE on December 01, 2021, 04:44:47 pm
svn-12539 :: in plugin contrib 'BrowseTracker_wx30-unix.cbp', the definition of 'cbDEBUG' is missing !!, which causes the non-recognition of 'cbAssertNonFatal()'
Title: Re: svn-12539
Post by: Pecan on December 02, 2021, 08:08:32 am
Thanks. Fixed in head r12543
Title: Re: svn-12539
Post by: blauzahn on December 07, 2021, 01:23:54 pm
Hello,

I see the same compile error with svn-12556. Here I use ubuntu-20.04 as well as arch linux and
compile cb as usual per command-line, configure and make.

Although the symbol cbDEBUG might be missing in some project(s), IMHO
cbAssertNonFatal should be handled in file src/include/cbexception.h in the same way cbAssert is.

mainly:
Code
#ifndef cbDEBUG
    #define cbAssertMessage(expr)
    #define cbAssertNonFatal(expr)
    #define cbAssert(expr)
 #else

Or maybe define them like en.cppreference.com/w/cpp/error/assert.

A patch for the file is attached.

Thanks in advance.

Title: Re: svn-12539
Post by: Totoxa on December 09, 2021, 01:33:50 am
Thanks. Fixed in head r12543

That fix doesn't work for building from command line (bootstrap, configure, make).
Title: Re: svn-12539
Post by: Pecan on December 09, 2021, 07:06:04 pm
... IMHO cbAssertNonFatal should be handled in file src/include/cbexception.h in the same way cbAssert is.
mainly:
Code
#ifndef cbDEBUG
    #define cbAssertMessage(expr)
    #define cbAssertNonFatal(expr)
    #define cbAssert(expr)
 #else

Thanks, fixed again, Head r12566