Skip to content

Instantly share code, notes, and snippets.

@kadeng
kadeng / test.cpp
Created June 27, 2024 09:57
Tracing type instantiation / declaration location
#include <iostream>
#include <sstream>
#include <cmath>
#include <typeinfo>
#define TRACEABLE_DECLARATION static constexpr int __line__ = __LINE__; static constexpr const char *__file__ = __FILE__;
#ifdef __GNUG__
#include <cxxabi.h>
#include <memory>