13 lines
191 B
C++
13 lines
191 B
C++
#include "if_constexpr.hpp"
|
|
|
|
#include <sstream>
|
|
|
|
namespace cpp17 {
|
|
|
|
auto stringify_ints(const std::vector<int>& data) -> std::string {
|
|
(void)data;
|
|
return {};
|
|
}
|
|
|
|
} // namespace cpp17
|