Skip to content

Instantly share code, notes, and snippets.

View lambdaknight's full-sized avatar

Turing Eret lambdaknight

View GitHub Profile
@lambdaknight
lambdaknight / demangle.h
Last active May 31, 2023 15:33
[demangler] Simple function to print out a human readable name of a type.
#ifndef __LK_DEMANGLE_H__
#define __LK_DEMANGLE_H__
#if __has_include(<cxxabi.h>)
#include <cxxabi.h>
#include <cstdlib>
#include <memory>
#endif
#include <string>