diff options
author | Laurens Van Houtven <_@lvh.cc> | 2014-06-23 16:33:24 +0200 |
---|---|---|
committer | Laurens Van Houtven <_@lvh.cc> | 2014-06-23 16:33:24 +0200 |
commit | 316b4fd47896766928289d3785d8c53d1ca32892 (patch) | |
tree | 88726a63ebfcf142189c7fcdb35934b3067095e2 | |
parent | 4e74a7f3f0991e271959a8c4aacc394a1e4ca615 (diff) | |
download | cryptography-316b4fd47896766928289d3785d8c53d1ca32892.tar.gz cryptography-316b4fd47896766928289d3785d8c53d1ca32892.tar.bz2 cryptography-316b4fd47896766928289d3785d8c53d1ca32892.zip |
Dance around the word "fallbacks""
-rw-r--r-- | docs/development/c-bindings.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/development/c-bindings.rst b/docs/development/c-bindings.rst index 039c081f..56963379 100644 --- a/docs/development/c-bindings.rst +++ b/docs/development/c-bindings.rst @@ -144,8 +144,8 @@ Otherwise, we set that flag to 0:: #else static const long Cryptography_HAS_QUANTUM_TRANSMOGRIFICATION = 0; -Then, in that ``#else`` block, we define a number of fallbacks. For an -integer constant, just define it as 0:: +Then, in that ``#else`` block, we define the names that aren't +available as dummy values. For an integer constant, use 0:: static const int QM_TRANSMOGRIFICATION_ALIGNMENT_LEFT = 0; static const int QM_TRANSMOGRIFICATION_ALIGNMENT_RIGHT = 0; |