aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/cxxsupp/libgcc/stdcxx_bits.cpp
blob: 0a34ef50c465760b93ccaeeffea7df1833a5243f (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");
}

}