Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8372717
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T14:30:28+00:00 2026-06-09T14:30:28+00:00

In my program I want to use asserts that show an error message. Apart

  • 0

In my program I want to use asserts that show an error message. Apart from the well known workarounds for C and C++ there’s the “real” solution as BOOST offers BOOST_ASSERT_MSG( expr, msg ) (see also assert() with message)

But a static message isn’t enough for me, I also want to show sometimes the failed variables, e.g. in a case like

BOOST_ASSERT_MSG( length >= 0, "No positive length found! It is " << length )

As you can see I’d like to format the message “string” as an stringstream or ostream as that’d allow me to easily show custom types (assuming I’ve defined the relevant formating function).

The problem here is that BOOST_ASSERT_MSG is by default requiring a char const * so that’s not compatible.

Is there a way to redefine / overload assertion_failed_msg() in such a way that using a stream as message will work? How?
(My naive approach failed as the compiler first wanted to do an operator<<("foo",bar) on the message itself…)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T14:30:29+00:00Added an answer on June 9, 2026 at 2:30 pm

    You could define your own macro

    #define ASSERT_WITH_MSG(cond, msg) do \
    { if (!(cond)) { std::ostringstream str; str << msg; std::cerr << str.str(); std::abort(); } \
    } while(0)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Since input and raw_input() stop the program from running anymore, I want to use
I have a program that I want to use as an autorun. I want
I have a program that I want to use google maps for. The problem
I want to use remote debugging. The program that I want to debug runs
I want to use sqlldr from a java program, but I dont want to
I'm writing a simple C# program and want to use an SQL server to
I am making a phonegap program and I want to use a .on('tap') event
I want to use one program as a shared library for an other program.
i want to use the dos commands in my ansi-c program how can i
I have a flight reservation program use mssql ,For reserving flights i want to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.