gtkd-developers / GtkD

GtkD is a D binding and OO wrapper of GTK+ originally created by Antonio Monteiro
http://gtkd.org
Other
322 stars 71 forks source link

Is "public void foreac" a typo in TreeModelIF.d #243

Closed JohnCoconut closed 6 years ago

JohnCoconut commented 6 years ago
public void foreac(GtkTreeModelForeachFunc func, void* userData);

https://github.com/gtkd-developers/GtkD/blob/master/generated/gtkd/gtk/TreeModelIF.d#L295

Or because foreach is already a keyword in D?

MikeWey commented 6 years ago

It's because foreach is a keyword, you will see the same thing for a few other functions that are also D keywords.

JohnCoconut commented 6 years ago

Got it.

JohnCoconut commented 6 years ago

I was busy when replying you. I have to give a thank you for your answer.