pkl97
pkl97
The patch fixes 3 Windows compiler warnings when compiling on level /W4: - facedetectcnn.cpp(874): warning C4457: declaration of 'conf' hides function parameter - facedetectcnn.h(209): warning C4457: declaration of 'c' hides...
When trying to compile the latest QtAV version against Qt 6 under Windows several compile errors occur. This is the first encountered: > VideoDecoderDXVA.cpp E:\QtAV\1.13.0-20220113\QtAV\src\codec\video\VideoDecoderDXVA.cpp(101): error C2039: 'windowsVersion': is not...
The program below shows this memory leak when executed in Valgrind: ```console [user@host]$ valgrind --leak-check=full ./LeakTest ==725012== Memcheck, a memory error detector ==725012== Copyright (C) 2002-2022, and GNU GPL'd, by...
The attached test case triggers this warning which indicates that Doxygen misinterprets the code: ``` Test.hpp:19: warning: documented symbol 'A::std::enable_if_t(const U &p_value) const' was not declared or defined. ``` **Expected...
boost/iostreams/filter/gzip.hpp, line 551: `BOOST_ASSERT(!"Bad state");` This line triggers a -Wstring-conversion warning: > boost/iostreams/filter/gzip.hpp:551:31: warning: implicit conversion turns string literal into bool: 'const char[10]' to 'bool' [-Wstring-conversion] Would it be possible...
This simple program crashes POCO (tested under Red Hat Enterprise Linux 9.4): ```c++ #include int main() { const Poco::Net::Context context(Poco::Net::Context::CLIENT_USE, "/tmp", Poco::Net::Context::VERIFY_STRICT, 9, false, "ALL"); return 0; } ``` The...