From: Jay Freeman (saurik) Date: Sun, 5 Jul 2015 07:59:35 +0000 (-0700) Subject: I am trying to get the habit of always using auto. X-Git-Tag: v1.1.20~1 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/688d4976aea1b292b5bcc3ea92096744255dd842 I am trying to get the habit of always using auto. --- diff --git a/cydo.cpp b/cydo.cpp index 05327df7..168d3c8a 100644 --- a/cydo.cpp +++ b/cydo.cpp @@ -70,7 +70,7 @@ int main(int argc, char *argv[]) { auto variables(launch_data_dict_lookup(value, LAUNCH_JOBKEY_ENVIRONMENTVARIABLES)); if (variables != NULL && launch_data_get_type(variables) == LAUNCH_DATA_DICTIONARY) { - bool dyld(false); + auto dyld(false); launch_data_dict_iterate(variables, [&dyld](const char *name, launch_data_t value) { if (strncmp(name, "DYLD_", 5) == 0)