summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorcypherpunks <cypherpunks@torproject.org>2015-12-10 16:54:52 +0100
committerNick Mathewson <nickm@torproject.org>2015-12-15 11:34:00 -0500
commit816207511b75f775d7dcc383875fa26f64ea98bf (patch)
tree797680439cfa9abaec8ba6a6c0a1fbe3619c2767 /doc
parent62c4d3880fa0e9929c575a66a7c4f464498a7c5e (diff)
downloadtor-816207511b75f775d7dcc383875fa26f64ea98bf.tar.gz
tor-816207511b75f775d7dcc383875fa26f64ea98bf.zip
Remove the INLINE coding standard
Diffstat (limited to 'doc')
-rw-r--r--doc/HACKING/CodingStandards.md3
1 files changed, 0 insertions, 3 deletions
diff --git a/doc/HACKING/CodingStandards.md b/doc/HACKING/CodingStandards.md
index d2fc784efb..bec076527f 100644
--- a/doc/HACKING/CodingStandards.md
+++ b/doc/HACKING/CodingStandards.md
@@ -138,9 +138,6 @@ available containers in `src/common/containers*.h`. You should probably
familiarize yourself with these modules before you write too much code, or
else you'll wind up reinventing the wheel.
-Use `INLINE` instead of `inline` -- it's a vestige of an old hack to make
-sure that we worked on MSVC6.
-
We don't use `strcat` or `strcpy` or `sprintf` of any of those notoriously broken
old C functions. Use `strlcat`, `strlcpy`, or `tor_snprintf/tor_asprintf` instead.