~ubuntu-branches/debian/experimental/mednafen/experimental

« back to all changes in this revision

Viewing changes to src/snes/src/lib/nall/static.hpp

  • Committer: Package Import Robot
  • Author(s): Stephen Kitt
  • Date: 2012-11-19 07:00:37 UTC
  • mfrom: (1.2.12)
  • Revision ID: package-import@ubuntu.com-20121119070037-jvknrm13zvim88oc
Tags: 0.9.26-1
* New upstream WIP version.
* Change priority to "extra" to match libvorbisidec1's.
* Drop "DM-Upload-Allowed" since it is no longer appropriate.
* Refresh patches, replacing MPC_STATUS_FAIL constant from older mpcdec
  versions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define NALL_STATIC_HPP
3
3
 
4
4
namespace nall {
5
 
  template<bool condition> struct static_assert;
6
 
  template<> struct static_assert<true> {};
 
5
  template<bool condition> struct nall_static_assert;
 
6
  template<> struct nall_static_assert<true> {};
7
7
 
8
8
  template<bool condition, typename true_type, typename false_type> struct static_if {
9
9
    typedef true_type type;