Skip to content

Commit 745c448

Browse files
committed
Makefile, zasm.pro: lifted requirement to c++20 (though c++17 will also do until now)
1 parent 285b133 commit 745c448

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ STRIP = strip
1616
DEFINES = -DNDEBUG -DRELEASE
1717

1818
CFLAGS = -pipe -Os -Wall -W -fPIE $(DEFINES)
19-
CXXFLAGS = $(CFLAGS) -Wno-multichar -std=c++11
19+
CXXFLAGS = $(CFLAGS) -Wno-multichar -std=c++20
2020
INCPATH = -I. -ISource -ILibraries
2121
ifeq ($(OS),Windows_NT)
2222
# static linking for Cygwin:

zasm.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ QT -= gui
1111

1212
CONFIG += console
1313
CONFIG -= app_bundle
14-
CONFIG += c++11
14+
CONFIG += c++20
1515
CONFIG += precompiled_header
1616
CONFIG(release,debug|release) { DEFINES += NDEBUG RELEASE } # ATTN: curly brace must start in same line!
1717
CONFIG(debug,debug|release) { DEFINES += DEBUG } # ATTN: curly brace must start in same line!

0 commit comments

Comments
 (0)