Andrew Kelley 3671582c15 syntax: functions require return type. remove ->
The purpose of this is:

 * Only one way to do things
 * Changing a function with void return type to return a possible
   error becomes a 1 character change, subtly encouraging
   people to use errors.

See #632

Here are some imperfect sed commands for performing this update:

remove arrow:

```
sed -i 's/\(\bfn\b.*\)-> /\1/g' $(find . -name "*.zig")
```

add void:

```
sed -i 's/\(\bfn\b.*\))\s*{/\1) void {/g' $(find ../ -name "*.zig")
```

Some cleanup may be necessary, but this should do the bulk of the work.
2018-01-25 04:10:11 -05:00
..
2017-12-02 22:32:39 -05:00
2017-11-24 14:56:05 -05:00
2018-01-04 22:46:26 -05:00
2016-09-19 11:54:01 -04:00
2017-11-29 23:09:35 -05:00
2017-11-29 23:09:35 -05:00
2016-12-01 21:08:12 -05:00
2018-01-07 04:43:08 -05:00
2016-02-11 01:33:27 -07:00
2017-04-10 20:02:39 -04:00
2018-01-19 03:21:47 -05:00
2018-01-23 23:08:09 -05:00
2018-01-23 23:08:09 -05:00
2017-10-01 21:05:08 -04:00
2018-01-06 00:15:37 -05:00