aboutsummaryrefslogtreecommitdiff
path: root/libstdc++/stdexcepti.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++/stdexcepti.cc')
-rw-r--r--libstdc++/stdexcepti.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++/stdexcepti.cc b/libstdc++/stdexcepti.cc
index 3b03acd63f4..9c02c71f497 100644
--- a/libstdc++/stdexcepti.cc
+++ b/libstdc++/stdexcepti.cc
@@ -12,10 +12,10 @@
void
__out_of_range (const char *s)
{
- throw out_of_range (s);
+ throw std::out_of_range (s);
}
void __length_error (const char *s)
{
- throw length_error (s);
+ throw std::length_error (s);
}