iondbproject / iondb

IonDB, a key-value datastore for resource constrained systems.
BSD 3-Clause "New" or "Revised" License
587 stars 48 forks source link

#ifdef usage to be changed to be #if defined() #20

Closed iondbproject closed 8 years ago

iondbproject commented 8 years ago

Currently, any time we do conditional compilation, it is done using the #ifdef directive. To allow for compound conditionals such as A && !B, switch all usage of #ifdef to be #if defined() instead.

Stickerpants commented 8 years ago

Task in progress by @danaack.

danaack commented 8 years ago

All #ifdef and #ifndef changes have been made. Changes are to be committed tomorrow.

Stickerpants commented 8 years ago

Changes merged into development. Ref 11d9dda233