diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-10-24 14:03:08 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-10-24 14:03:08 +0200 |
commit | 4d7fc0a9bbea88e06e702ff211ba06f20ee3b3c8 (patch) | |
tree | 63603f73f106f7b19dfdc23bb303685cefb69040 /docs/TODO | |
parent | cc8c8f957e35fc8bda22a80862a0e90a5979bffb (diff) | |
download | curl-4d7fc0a9bbea88e06e702ff211ba06f20ee3b3c8.tar.gz |
TODO: indent code to make it render properly
Diffstat (limited to 'docs/TODO')
-rw-r--r-- | docs/TODO | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -394,11 +394,11 @@ Your curl/curl.h alternative could then look like (replace with suitable CPP variable to check): - #ifdef ARCH_32bit - #include <curl32/curl.h> - #else /* ARCH_64bit */ - #include <curl64/curl.h> - #endif + #ifdef ARCH_32bit + #include <curl32/curl.h> + #else /* ARCH_64bit */ + #include <curl64/curl.h> + #endif A fix would either (A) fix the 32/64 setup automatically or even better (B) work away the architecture specific defines from the headers so that they can |