Remove util::copy_lit

This commit is contained in:
Tatsuhiro Tsujikawa
2025-04-30 16:25:50 +09:00
parent 9555260a65
commit 2fb05c54ad

View File

@@ -868,11 +868,6 @@ void shuffle(RandomIt first, RandomIt last, Generator &&gen, SwapFun fun) {
}
}
template <typename OutputIterator, typename CharT, size_t N>
OutputIterator copy_lit(OutputIterator it, CharT (&s)[N]) {
return std::copy_n(s, N - 1, it);
}
// Returns x**y
double int_pow(double x, size_t y);