style: implement clang-format styling parameters
This commit is contained in:
parent
10a4dcb60b
commit
f2ce83335c
10 changed files with 462 additions and 547 deletions
|
|
@ -1,7 +1,6 @@
|
|||
#include "inc/strFuncs.hpp"
|
||||
|
||||
template <typename Out>
|
||||
void split(const std::string &s, char delim, Out result) {
|
||||
template <typename Out> void split(const std::string &s, char delim, Out result) {
|
||||
std::istringstream iss(s);
|
||||
std::string item;
|
||||
while(std::getline(iss, item, delim))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue