]> git.saurik.com Git - cycript.git/blobdiff - Console.cpp
Update makefile to have Local.hpp.
[cycript.git] / Console.cpp
index 6ecc251a7cc53c152c369426c624c5a77c488e09..89cd62ef635192ee0730650f57f1bd60949640d2 100644 (file)
@@ -313,7 +313,7 @@ static char **Complete(const char *word, int start, int end) {
     std::string common;
     bool rest(false);
 
-    for (CYElement *element(array->elements_); element != NULL; element = element->next_) {
+    CYForEach (element, array->elements_) {
         CYString *string(dynamic_cast<CYString *>(element->value_));
         _assert(string != NULL);