refresh struct

This commit is contained in:
chatlanin
2024-07-05 10:26:32 +03:00
parent e22967accb
commit 40da1bbaa9
68 changed files with 17 additions and 56 deletions

17
examples/logger/main.cpp Normal file
View File

@@ -0,0 +1,17 @@
#include <set>
#include <unordered_set>
#include "hack/logger/logger.hpp"
auto main(int argc, char *argv[]) -> int
{
std::set<int> s { 1, 2, 3 };
hack::log()(s);
std::vector<int> v { 1, 2, 3 };
hack::log()(v, s);
std::unordered_set<int> us { 1, 2, 3 };
hack::log()(v, s, us);
}