o remove old bsnes version

This commit is contained in:
David Voswinkel
2009-05-12 19:44:23 +02:00
parent 9cf6eae076
commit 1c30d3db56
401 changed files with 0 additions and 68623 deletions

View File

@@ -1,17 +0,0 @@
#ifndef NALL_STATIC_HPP
#define NALL_STATIC_HPP
namespace nall {
template<bool condition> struct static_assert;
template<> struct static_assert<true> {};
template<bool condition, typename true_type, typename false_type> struct static_if {
typedef true_type type;
};
template<typename true_type, typename false_type> struct static_if<false, true_type, false_type> {
typedef false_type type;
};
}
#endif