MEL
Microthread & Execution library
Int2Type.h
1 #pragma once
2 
3 namespace mel
4 {
5  namespace mpl
6  {
10  template <int valor>
11  struct Int2Type
12  {
13  enum { value = valor };
14  // bool operator==( const Int2Type& ob2 ) const { return true;}
15  };
16 
17  }
18 }
Definition: Callback_Impl.h:11
Definition: Int2Type.h:12