jacksonh / manos

Manos is an easy to use, easy to test, high performance web application framework that stays out of your way and makes your life ridiculously simple.
Other
455 stars 61 forks source link

Fix windows build by assigning closed-over variables so delegates can access them #117

Closed imphasing closed 13 years ago

imphasing commented 13 years ago

This is a very simple fix for the windows build that simply assigns the variables to be closed over to null first, instead of a simple declaration, so the compiler won't complain about the delegate accessing an unassigned local variable.

Alex