This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// [B](f: (A) ⇒ [B]): [B] ; Although the types in the arrays aren't strict (: | |
Object.defineProperties(Array.prototype, { | |
'flatMap': { | |
value: function (lambda) { | |
return Array.prototype.concat.apply([], this.map(lambda)); | |
}, | |
writeable: false, | |
enumerable: false | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make[1]: Entering directory `/opt/source/xbmc/xbmc/input/linux' | |
CPP LIRC.o | |
LIRC.cpp: In member function âvoid CRemoteControl::Disconnect()â: | |
LIRC.cpp:99: error: âinotify_rm_watchâ was not declared in this scope | |
LIRC.cpp: In member function âvoid CRemoteControl::Initialize()â: | |
LIRC.cpp:157: error: âinotify_initâ was not declared in this scope | |
LIRC.cpp:166: error: âIN_DELETE_SELFâ was not declared in this scope | |
LIRC.cpp:166: error: âinotify_add_watchâ was not declared in this scope | |
LIRC.cpp: In member function âbool CRemoteControl::CheckDevice()â: | |
LIRC.cpp:221: error: invalid application of âsizeofâ to incomplete type âinotify_eventâ |