Mathias Berchtold

Results 37 issues of Mathias Berchtold

The SCN_MSVC calculation is wrong _MSC_VER: 1933 _MSC_FULL_VER: 193331424 To get _MSC_VER from _MSC_FULL_VER, _MSC_FULL_VER needs to be divided by 100000.

I get the following warning with VS 2022 17.3 ``` 1>C:\Projects\Libraries\scnlib\scnlib\src\locale.cpp(311,9): warning C4127: conditional expression is constant 1>C:\Projects\Libraries\scnlib\scnlib\src\locale.cpp(311,9): message : consider using 'if constexpr' statement instead 1>C:\Projects\Libraries\scnlib\scnlib\src\locale.cpp(311): message : while...

On Visual Studio 2019 Preview 4 (RC), I get the following error when running compile or tidy: VsWhere could not detect Visual Studio 2017 Microsoft.VisualStudio.Product.Enterprise. At C:\users\mb\appdata\local\microsoft\visualstudio\16.0_a842d04d\extensions\ks1vy2qo.dxa\psClang\visualstudio-detectio n.ps1:128 char:17 +...

bug
in progress

VS 15.5 with /std:c++latest complains about the deprecated use of std::allocator: `` warning STL4009: std::allocator is deprecated in C++17. You can define _SILENCE_CXX17_ALLOCATOR_VOID_DEPRECATION_WARNING or _SILENCE_ALL_CXX17_DEPRECATION_WARNINGS to acknowledge that you have...

VS 15.5 with /std:c++latest complains about the deprecated use of std::result_of: error C4996: 'std::result_of': warning STL4014: std::result_of and std::result_of_t are deprecated in C++17. They are superseded by std::invoke_result and std::invoke_result_t....

I'm getting this error with the PeachPie 1.0.23 ``` 1>C:\Program Files\dotnet\sdk\7.0.100-preview.7.22377.5\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInference.targets(219,5): message NETSDK1057: You are using a preview version of .NET. See: https://aka.ms/dotnet-support-policy 1>PeachPie PHP Compiler version 1.0.23+1e47a4b9321f542ab21269dad6b9d20315e277cd 1>C:\Users\mb\.nuget\packages\peachpie.net.sdk\1.0.23\build\Peachpie.NET.Core.Sdk.targets(245,5): error...

See PR: https://github.com/leethomason/tinyxml2/pull/697

Use the new zigbee2mqtt api to request a network map as documented here: https://www.zigbee2mqtt.io/information/mqtt_topics_and_message_structure.html With this change it is possible to use this integration when zigbee2mqtt is configured with: ```...

Incorrect warning issued for session_regenerate_id: warning PHP5014: session_regenerate_id() expects 0 parameter(s), 1 given ``` public function regenerateId($deleteOldSession = true) { if ($this->sessionExists()) { session_regenerate_id((bool) $deleteOldSession); } return $this; } ```...

**Describe the bug** Upgrading from 40630 to any higher version (e.g. 40650) fails with: Bus error (core dumped) ``` swupd clean --all swupd update --version 40650 --debug --verbose > debug.txt...

bug_triage