Yuya Tanaka

Results 88 comments of Yuya Tanaka

I meant like below: ``` swift class Region { let calendarName: CalendarName let timeZoneName: TimeZoneName let localName: LocaleName var calendar: NSCalendar { // It might be better to cache calendar...

Note that `var calendar` is internal access, and cannot be manipulated from outside of ~~instance~~ library. Cost of copying NSCalendar is not ignorable, so it'd be better to copy it...

StoreBox implements it with Proxy+InvocationHandler, which is simpler than annotation processor. But I think using interface is overkill to implement the only 1-2 lines of code: ``` java public void...

It seems markers are detected correctly, but headers are misplaced. It perhaps happen without diff3.

It has same color to background. So it looks missing but is actually shown there.

It can be confirmed by that only one `=` is shown (and rests are overlapped with header).

> I was missing both 'brew install libjpeg' and 'brew install libpng' I installed libjpeg into ~/homebrew but this gem does not obey `--with-cppflags` and says could not find header...

Same error on macOS BigSur 11.1. It works without error on docker (for mac).

In my environment, adding `-directory foobar` option solved that error. Maybe it is just "too many open files".

I created fork at https://github.com/ypresto/CompileDaemon/tree/bump-sys . You can installed it by below snippet: ``` go get github.com/ypresto/CompileDaemon@bump-sys-fork ```