This commit is contained in:
Aaron Liu 2023-12-06 15:58:41 -05:00
commit e5c4677542
No known key found for this signature in database
GPG key ID: 2D4DA57B12065A35
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ prefix ?= /usr/local
exec_prefix ?= $(prefix)
bindir ?= $(exec_prefix)/bin
override CXXFLAGS += -std=c++20 -Wall -fexceptions
override CXXFLAGS += -std=c++2a -Wall -fexceptions
override LDFLAGS += -pthread
all: $(PROGNAME)

View file

@ -590,7 +590,7 @@ int main(int argc, char *argv[]) {
<< std::endl;
}
#else
std::cerr << "Warning: failed to determine most reasonable sie: "
std::cerr << "Warning: failed to determine most reasonable size: "
"unrecognized system, defaulting to 80x24"
<< std::endl;
#endif