• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

C++ベースのLightweightなHTTPサーバー


Commit MetaInfo

Revision8fed3eeb0f4a20df3829639181d69c97290f2c36 (tree)
Time2013-03-17 14:06:56
AuthorMichio Hirai <smg_ykz@user...>
CommiterMichio Hirai

Log Message

[BugFix] Fix the problem of mt::Append metafunction

Change Summary

Incremental Difference

--- a/inc/mt_typelist.h
+++ b/inc/mt_typelist.h
@@ -47,6 +47,12 @@ struct Append<Typelist<T, U>, V>
4747 typedef Typelist<T, typename Append<U, V>::Result > Result;
4848 };
4949
50+template <typename T, typename U, typename V>
51+struct Append<Typelist<T, NullType>, Typelist<U, V> >
52+{
53+ typedef Typelist<T, Typelist<U, V> > Result;
54+};
55+
5056 template <typename T>
5157 struct Append<NullType, T>
5258 {