Skip to content
Snippets Groups Projects
Unverified Commit da07977d authored by LC's avatar LC Committed by GitHub
Browse files

Merge pull request #5251 from ReinUsesLisp/wuninitialized

cmake: Enforce -Wuninitialized
parents d5fe722a ac2e2ebe
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,7 @@ else()
-Werror=implicit-fallthrough
-Werror=missing-declarations
-Werror=reorder
-Werror=uninitialized
-Werror=unused-result
-Wextra
-Wmissing-declarations
......
......@@ -48,7 +48,7 @@ public:
class PCIe final : public ServiceFramework<PCIe> {
public:
explicit PCIe(Core::System& system_) : ServiceFramework{system, "pcie"} {
explicit PCIe(Core::System& system_) : ServiceFramework{system_, "pcie"} {
// clang-format off
static const FunctionInfo functions[] = {
{0, nullptr, "RegisterClassDriver"},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment