Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
Work in progress | 🚧 :construction: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
Hotfix | 🩹 :adhesive_bandage: |
Critical hotfix | 🚑 :ambulance: |
Build system | 👷 :construction_worker: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <string> | |
#include <chrono> | |
#include <algorithm> | |
#include <fstream> | |
#include <thread> | |
#define CONCAT_IMPL(x, y) x##y // Helper macro to concatenate two tokens | |
#define CONCAT(x, y) CONCAT_IMPL(x, y) // Macro to concatenate two tokens |