successful merge?

This commit is contained in:
Me
2022-08-08 15:25:16 +02:00
11 changed files with 334 additions and 247 deletions

View File

@@ -1,6 +1,14 @@
#include "utils.hpp"
void throw_test()
{
static int i = 0;
++i;
if (i % 8 == 0)
throw std::bad_alloc();
}
std::vector<std::string> split(std::string input, char delimiter)
{
std::vector<std::string> answer;