Skip to content

Commit

Permalink
Fix build breaking since #40
Browse files Browse the repository at this point in the history
  • Loading branch information
madsmtm committed Nov 2, 2021
1 parent ed8f828 commit da7313f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion objc2_foundation/examples/basic_usage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fn main() {
// Create an NSArray from a Vec
let objs = vec![obj, obj2];
let array = NSArray::from_vec(objs);
for obj in array.object_enumerator() {
for obj in array.iter() {
println!("{:?}", obj);
}
println!("{}", array.len());
Expand Down

0 comments on commit da7313f

Please sign in to comment.