Times are UTC Toggle Colours
2023-02023-05-13T22:35:19 *** patrick[m] has quit IRC 00:02:48 *** HerzogDeXtEr has quit IRC 01:14:40 *** geli has joined #openttd 01:25:46 *** geli has quit IRC 02:01:52 *** herms has quit IRC 02:02:35 *** herms has joined #openttd 02:23:45 *** Wormnest has quit IRC 02:55:41 *** D-HUND has joined #openttd 02:59:01 *** debdog has quit IRC 03:45:22 *** keikoz has joined #openttd 03:56:49 *** D-HUND is now known as debdog 04:44:15 <DorpsGek> [OpenTTD/OpenTTD] rubidium42 approved pull request #10821: Codechange: Use std::move for bridge list. https://github.com/OpenTTD/OpenTTD/pull/10821#pullrequestreview-1425486239 04:45:08 *** nielsm has joined #openttd 05:32:33 *** HerzogDeXtEr has joined #openttd 06:55:15 *** birdjj has quit IRC 06:55:16 *** birdjj has joined #openttd 06:57:34 *** Wolf01 has joined #openttd 06:59:55 *** birdjj has quit IRC 07:00:04 *** birdjj has joined #openttd 07:10:22 <GeorgeVB> glx[d]: And is there anybody here who can do it? 07:22:14 <DorpsGek> [OpenTTD/OpenTTD] PeterN merged pull request #10821: Codechange: Use std::move for bridge list. https://github.com/OpenTTD/OpenTTD/pull/10821 07:25:59 <DorpsGek> [OpenTTD/OpenTTD] PeterN opened pull request #10822: Codechange: Pass reference instead of pointer to GUI*Lists. https://github.com/OpenTTD/OpenTTD/pull/10822 07:32:23 *** nielsm has quit IRC 07:37:39 *** nielsm has joined #openttd 07:38:16 <andythenorth> moin 07:48:16 <petern> Huh, my clone of nml says that upstream/master is from 2019... 07:49:26 <petern> Oh whoops, I set both remotes to PeterN, not one to OpenTTD. 07:49:33 <andythenorth> never happened 07:49:35 <andythenorth> didn't see it 07:49:37 <andythenorth> onwards 07:50:20 <DorpsGek> [OpenTTD/nml] PeterN updated pull request #287: Support extended object/station/roadstop limits (draft) https://github.com/OpenTTD/nml/pull/287 07:51:16 <DorpsGek> [OpenTTD/nml] PeterN approved pull request #289: Add: Support for {FORCE} string command https://github.com/OpenTTD/nml/pull/289#pullrequestreview-1425503087 07:51:46 <petern> Those checks are a bit faster than OpenTTD's 😄 07:53:30 <DorpsGek> [OpenTTD/nml] PeterN updated pull request #288: Change: Extend vehicle random bits to 16. https://github.com/OpenTTD/nml/pull/288 07:59:53 <DorpsGek> [OpenTTD/OpenTTD] TrueBrain commented on pull request #10822: Codechange: Pass reference instead of pointer to GUI*Lists. https://github.com/OpenTTD/OpenTTD/pull/10822#pullrequestreview-1425504459 08:00:24 *** nielsm has quit IRC 08:00:52 <TrueBrain> and same question in company_gui.cpp ofc 🙂 08:01:06 <DorpsGek> [OpenTTD/OpenTTD] PeterN commented on pull request #10822: Codechange: Pass reference instead of pointer to GUI*Lists. https://github.com/OpenTTD/OpenTTD/pull/10822#pullrequestreview-1425504658 08:01:41 <TrueBrain> won't work, or won't help? 😄 08:02:12 <petern> ../src/group_gui.cpp:141:21: error: reference to type 'const Group' could not bind to an lvalue of type 'const Group *' 08:02:24 <TrueBrain> silly compilers 😛 08:02:38 <DorpsGek> [OpenTTD/OpenTTD] TrueBrain approved pull request #10822: Codechange: Pass reference instead of pointer to GUI*Lists. https://github.com/OpenTTD/OpenTTD/pull/10822#pullrequestreview-1425504897 08:02:50 <petern> I could (const auto &g : source) 08:02:56 <TrueBrain> one thing I dislike about these kind of things, that it is not always visible what is behind a variable 😛 08:03:00 <petern> But then I'd need to derefernce it. 08:03:42 <petern> So the rest stays the same, but it becomes `const auto &g` instead of `const Group *g`. 08:04:31 <TrueBrain> I don't care 😛 I just