Files
Fig/include/fassert.hpp
2025-12-19 20:38:40 +08:00

3 lines
60 B
C++

#pragma once
#define fassert(exp,msg) (if(!exp) throw msg;)