$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: [boost] Mark throw_exception as noreturn?
From: Andrey Semashev (andrey.semashev_at_[hidden])
Date: 2008-10-25 17:39:00
Hi,
I was wondering why the throw_exception function is not marked as
noreturn? This makes it troublesome to use it as a drop-in replacement
for throw statements as it starts to flag compiler warnings about
missing return statements in non-void functions.
I suggest to mark the function as noreturn at least for compilers that
support it. GCC has __attribute__((noreturn)), MSVC has
__declspec(noreturn).