Skip to content

Commit

Permalink
Try testing C++98 in windows again
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jul 22, 2024
1 parent e463195 commit a821852
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions cplusplus/test_euler.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,7 @@
IN_OSX = system() == 'Darwin'
IN_TERMUX = bool(which('termux-setup-storage'))
IN_LINUX = (not IN_TERMUX) and (system() == 'Linux')
if system() == 'Windows':
STANDARDS = ('c++14', 'c++17', 'c++20')
else:
STANDARDS = ('c++98', 'c++03', 'c++11', 'c++14', 'c++17', 'c++20')
STANDARDS = ('c++98', 'c++03', 'c++11', 'c++14', 'c++17', 'c++20')

if IN_TERMUX:
BUILD_FOLDER = Path.home().joinpath('build') # Termux can't make executable files outside of $HOME
Expand Down

0 comments on commit a821852

Please sign in to comment.