mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Remove obsolete throw specifications.
C++11 deprecates throw specifications.
This commit is contained in:
parent
3efd063a08
commit
bc646b54ed
@ -343,7 +343,7 @@ GUID::to_string () const noexcept
|
||||
}
|
||||
|
||||
GUID
|
||||
GUID::from_string (std::string const & str) throw (guid_syntax_exception)
|
||||
GUID::from_string (std::string const & str)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
@ -49,7 +49,7 @@ struct GUID
|
||||
operator GncGUID () const noexcept;
|
||||
static GUID create_random () noexcept;
|
||||
static GUID const & null_guid () noexcept;
|
||||
static GUID from_string (std::string const &) throw (guid_syntax_exception);
|
||||
static GUID from_string (std::string const &);
|
||||
std::string to_string () const noexcept;
|
||||
auto begin () const noexcept -> decltype (implementation.begin ());
|
||||
auto end () const noexcept -> decltype (implementation.end ());
|
||||
|
Loading…
Reference in New Issue
Block a user