Merge pull request #863 from m0vse/master

Update to use C++17 and fix compile warnings.
This commit is contained in:
Jonathan Naylor 2026-04-05 16:20:00 +01:00 committed by GitHub
commit 134f0daafd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,7 +2,7 @@
CC = cc
CXX = c++
CFLAGS = -g -O3 -Wall -std=c++0x -pthread -MMD -MD -I/usr/local/include
CFLAGS = -g -O3 -Wall -std=c++17 -Wno-psabi -pthread -MMD -MD -I/usr/local/include
LIBS = -lpthread -lutil -lmosquitto
LDFLAGS = -g -L/usr/local/lib