summaryrefslogtreecommitdiff
path: root/libstdc++-v3/src
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/src')
-rw-r--r--libstdc++-v3/src/functexcept.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/libstdc++-v3/src/functexcept.cc b/libstdc++-v3/src/functexcept.cc
index 8cfaaac7ec9..9798e8f2ca0 100644
--- a/libstdc++-v3/src/functexcept.cc
+++ b/libstdc++-v3/src/functexcept.cc
@@ -110,43 +110,43 @@ namespace std
{ abort(); }
void
- __throw_logic_error(const char* __s)
+ __throw_logic_error(const char*)
{ abort(); }
void
- __throw_domain_error(const char* __s)
+ __throw_domain_error(const char*)
{ abort(); }
void
- __throw_invalid_argument(const char* __s)
+ __throw_invalid_argument(const char*)
{ abort(); }
void
- __throw_length_error(const char* __s)
+ __throw_length_error(const char*)
{ abort(); }
void
- __throw_out_of_range(const char* __s)
+ __throw_out_of_range(const char*)
{ abort(); }
void
- __throw_runtime_error(const char* __s)
+ __throw_runtime_error(const char*)
{ abort(); }
void
- __throw_range_error(const char* __s)
+ __throw_range_error(const char*)
{ abort(); }
void
- __throw_overflow_error(const char* __s)
+ __throw_overflow_error(const char*)
{ abort(); }
void
- __throw_underflow_error(const char* __s)
+ __throw_underflow_error(const char*)
{ abort(); }
void
- __throw_ios_failure(const char* __s)
+ __throw_ios_failure(const char*)
{ abort(); }
#endif //__EXCEPTIONS
}