Skip to content

Commit

Permalink
feat: upgrade c++ version to c++23
Browse files Browse the repository at this point in the history
  • Loading branch information
ashpool37 committed Aug 23, 2024
1 parent 4cf5e72 commit 64d2957
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/.clangd
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
CompileFlags:
Add: [-std=c++20, -Wall, -Wextra]
Add: [-std=c++23, -Wall, -Wextra]
2 changes: 1 addition & 1 deletion templates/Makefile.j2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.POSIX:
CXX = clang++
CXXFLAGS = -g -std=c++20 -Wall -Wextra
CXXFLAGS = -g -std=c++23 -Wall -Wextra

SRCS = main.cpp
OBJS = $(SRCS:.cpp=.o)
Expand Down

0 comments on commit 64d2957

Please sign in to comment.