Compilation fix 2 + callback fix

This commit is contained in:
Nekotekina
2014-09-01 21:38:55 +04:00
parent 3b764d45f2
commit 09022b1000
2 changed files with 19 additions and 5 deletions
+2 -2
View File
@@ -197,13 +197,13 @@ class to_be_t
template<typename TT, typename TT2, bool is_need_swap>
struct _be_type_selector
{
typedef typename TT type;
typedef TT type;
};
template<typename TT, typename TT2>
struct _be_type_selector<TT, TT2, true>
{
typedef typename be_t<TT, TT2> type;
typedef be_t<TT, TT2> type;
};
public: