diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-28 08:15:47 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-28 08:15:47 -0800 |
commit | b50927e8dba16142205684ff9cdeab8b03d57b50 (patch) | |
tree | 6b7dbf5249f6a0e0b5d7436cfc8f9c70cdb987df /docs | |
parent | 6032e1841bf521281ccfca6ed9369423a6cf1e6e (diff) | |
parent | 745ee07dcf72bee4dab1d807779be6449a81b96f (diff) | |
download | cryptography-b50927e8dba16142205684ff9cdeab8b03d57b50.tar.gz cryptography-b50927e8dba16142205684ff9cdeab8b03d57b50.tar.bz2 cryptography-b50927e8dba16142205684ff9cdeab8b03d57b50.zip |
Merge pull request #361 from reaperhulk/define-to-int
Convert #defines to explicit type declaration for consistency
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contributing.rst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/contributing.rst b/docs/contributing.rst index 139f7f3b..63c99530 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -136,6 +136,23 @@ Include a space after commas between parameters: // Bad long f(int,char *) +Values set by ``#define`` should be assigned the appropriate type. If you see +this: + +.. code-block:: c + + #define SOME_INTEGER 0x0; + #define SOME_UINTEGER (unsigned int)0x0001; + #define SOME_STRING "hello"; + +...it should be added to the bindings like so: + +.. code-block:: c + + static const int SOME_INTEGER; + static const unsigned int SOME_UINTEGER; + static char *const SOME_STRING; + Documentation ------------- |