aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/cxxsupp/libgcc/stdcxx_bits.cpp
blob: 01977e16d89b77f839908acae29b1769fbc0ace7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "stdcxx_bits.h" 
 
#include <stdexcept> 
 
namespace std { 
 
void __throw_out_of_range_fmt(const char* __fmt, ...) { 
    (void)__fmt; 
    throw std::out_of_range("__throw_out_of_range_fmt"); 
} 
 
}