Files
cpp-course/modules/11_cpp17/src/if_constexpr.cpp
T

13 lines
191 B
C++
Raw Normal View History

2026-08-11 17:40:36 +03:00
#include "if_constexpr.hpp"
#include <sstream>
namespace cpp17 {
auto stringify_ints(const std::vector<int>& data) -> std::string {
(void)data;
return {};
}
} // namespace cpp17