stdcxx_bits.cpp 200 B

123456789101112
  1. #include "stdcxx_bits.h"
  2. #include <stdexcept>
  3. namespace std {
  4. void __throw_out_of_range_fmt(const char* __fmt, ...) {
  5. (void)__fmt;
  6. throw std::out_of_range("__throw_out_of_range_fmt");
  7. }
  8. }