Skip to content

Instantly share code, notes, and snippets.

@warmwaffles
Created September 27, 2016 14:44
Show Gist options
  • Save warmwaffles/02b9f0883ea6c47e56fcb2dd0c0d2e87 to your computer and use it in GitHub Desktop.
Save warmwaffles/02b9f0883ea6c47e56fcb2dd0c0d2e87 to your computer and use it in GitHub Desktop.
#pragma once
#include <stdlib.h>
template <typename T>
inline void assert_eq(T const& a, T const& b)
{
if (a != b) {
abort();
}
}
template <typename T>
inline void refute_eq(T const& a, T const& b)
{
if (a == b) {
abort();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment