• 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

Revisione44831518755dd8fbf2836a7a579d0aea629c6e9 (tree)
Time2012-12-16 22:03:48
AuthorMichio Hirai <smg_ykz@user...>
CommiterMichio Hirai

Log Message

[Refactor] Remove implementation details for mt::getArrayLength() function.

Change Summary

Incremental Difference

--- a/inc/mt_array_length.h
+++ b/inc/mt_array_length.h
@@ -5,10 +5,7 @@
55 namespace mt {
66
77 template <typename T, size_t N>
8-char (&getArrayLength(const T (&)[N]))[N]
9-{
10- return N;
11-}
8+char (&getArrayLength(const T (&)[N]))[N];
129
1310 } // namespace mt
1411