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

#define ASL_ASSERT(...)                                                 \
    if (__VA_ARGS__) {}                                                 \
    else { __debugbreak(); }