fix pipeline error

This commit is contained in:
sfja 2026-04-09 16:03:18 +02:00
parent 1f31cfb561
commit 875bd8c45a
2 changed files with 2 additions and 3 deletions

View File

@ -4,7 +4,7 @@ MAKEFLAGS += -j16
CXX=g++
LD=g++
CXXFLAGS = -std=c++23 -pedantic-errors -Wall -Wextra -Wconversion
CXXFLAGS = -std=c++23 -pedantic-errors -Wall -Wextra -Wconversion -Wcpp
LDFLAGS =
libraries = libmosquitto
@ -16,7 +16,7 @@ RELEASE = 0
GDB = 0
ifeq ($(RELEASE),1)
CXXFLAGS += -O3
CXXFLAGS += -O3 -Werror
else
CXXFLAGS += -O0 -g -Wno-unused

View File

@ -25,7 +25,6 @@ int main(void)
{
std::println("Starting backend...");
auto mqtt_client = mst::mqtt::Client(
BACKEND_MQTT_HOST, BACKEND_MQTT_PORT, "test", "1234");