zh-google-styleguide/google-cpp-styleguide
Jasper Wan c3ba7d8251 Update headers.rst and fix #includes
* 已参照<http://google.github.io/styleguide/cppguide.html#Header_Files>内容更新
* 修正`#includes`为`#include`
* 注:最新的规范已经将“1.5. 函数参数的顺序”一节移动到“Functions”一章中,本commit删除这一节,删去的代码如下:
```rst

1.5. 函数参数的顺序
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. tip::

    定义函数时, 参数顺序依次为: 输入参数, 然后是输出参数.

C/C++ 函数参数分为输入参数, 输出参数, 和输入/输出参数三种. 输入参数一般传值或传 ``const`` 引用, 输出参数或输入/输出参数则是非 ``const`` 指针. 对参数排序时, 将只输入的参数放在所有输出参数之前. 尤其是不要仅仅因为是新加的参数, 就把它放在最后; 即使是新加的只输入参数也要放在输出参数之前.

这条规则并不需要严格遵守. 输入/输出两用参数 (通常是类/结构体变量) 把事情变得复杂, 为保持和相关函数的一致性, 你有时不得不有所变通.
```
2016-04-21 16:42:36 +08:00
..
classes.rst classes.rst: 完善一处 TODO 2015-08-23 13:32:45 +08:00
comments.rst Update comments.rst 2015-09-30 17:41:04 +08:00
contents.rst google-cpp-styleguide: fix #13 2015-08-02 14:08:50 +08:00
end.rst google-cpp-styleguide: fix #13 2015-08-02 14:08:50 +08:00
exceptions.rst google-cpp-styleguide: fix #13 2015-08-02 14:08:50 +08:00
formatting.rst formatting.rst: 修正一处翻译 2015-08-03 21:55:07 +08:00
headers.rst Update headers.rst and fix #includes 2016-04-21 16:42:36 +08:00
index.rst Fixed for better translation. 2016-01-19 10:51:44 +08:00
magic.rst 添加缺失的内容 2016-02-09 11:49:13 +08:00
naming.rst fix typing mistake 2015-11-27 17:26:01 +08:00
others.rst 更正模版元错别字 2016-01-15 15:21:22 +08:00
scoping.rst Update scoping.rst 2016-01-23 14:54:59 +08:00