Created
September 27, 2016 14:44
-
-
Save warmwaffles/02b9f0883ea6c47e56fcb2dd0c0d2e87 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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