Lots of work on LuaStack

This commit is contained in:
2020-11-27 13:21:07 -05:00
parent f690fb147b
commit 455ba5df87
19 changed files with 715 additions and 527 deletions

View File

@@ -2,11 +2,13 @@
#define UTIL_HPP
#include <string>
#include <set>
#include <algorithm>
namespace util {
using stringvec = std::vector<std::string>;
using stringset = std::set<std::string>;
// trim from start
static inline std::string ltrim(std::string s) {