Kouhei Sutou
null+****@clear*****
Thu Oct 4 10:49:42 JST 2012
Kouhei Sutou 2012-03-15 17:57:50 +0900 (Thu, 15 Mar 2012) New Revision: ba28f72e04f42d0d476e071276d629a02f5c902e https://github.com/mroonga/mroonga/commit/ba28f72e04f42d0d476e071276d629a02f5c902e Log: doc coding-style: add about boolean literal Modified files: doc/source/developer/coding_style.rst Modified: doc/source/developer/coding_style.rst (+10 -0) =================================================================== --- doc/source/developer/coding_style.rst 2012-03-15 17:56:58 +0900 (f88ce55) +++ doc/source/developer/coding_style.rst 2012-03-15 17:57:50 +0900 (6c2eb5f) @@ -421,3 +421,13 @@ bool型を用いる int is_searching; +真偽値のリテラルには ``true`` または ``false`` を用いる +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +よい例: + + bool is_searching = true; + +悪い例( ``0`` 以外の値を真の値として用いている): + + bool is_searching = 1; -------------- next part -------------- HTML����������������������������...Download