mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
build: add symbol for upcoming gcc 4.9's libstdc++
This commit is contained in:
parent
49a3352c1c
commit
05c20a553a
@ -77,4 +77,11 @@ ctype<char>::_M_widen_init() const {
|
||||
}
|
||||
}
|
||||
|
||||
void __throw_out_of_range_fmt(const char*, ...) __attribute__((__noreturn__));
|
||||
void __throw_out_of_range_fmt(const char* err, ...)
|
||||
{
|
||||
// Safe and over-simplified version. Ignore the format and print it as-is.
|
||||
__throw_out_of_range(err);
|
||||
}
|
||||
|
||||
}// namespace std
|
||||
|
Loading…
Reference in New Issue
Block a user