summaryrefslogtreecommitdiff
path: root/asl/assert.hpp
blob: d419c24745ec2a4174432aa847c4517a325af27c (plain)
1
2
3
4
5
6
#pragma once

// @Todo Make this portable-ish
#define ASL_ASSERT(...)                                                 \
    if (__VA_ARGS__) {}                                                 \
    else { __builtin_debugtrap(); }